mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
chrome: Support client-created request contexts (see issue #2969)
RequestContextTest and URLRequestTest suites now pass with the Chrome runtime enabled.
This commit is contained in:
@@ -25,7 +25,6 @@ class CefTestSuite {
|
||||
int Run();
|
||||
|
||||
void GetSettings(CefSettings& settings) const;
|
||||
bool GetCachePath(std::string& path) const;
|
||||
|
||||
// Register a temp directory that should be deleted on shutdown.
|
||||
void RegisterTempDirectory(const CefString& directory);
|
||||
@@ -34,6 +33,7 @@ class CefTestSuite {
|
||||
void DeleteTempDirectories();
|
||||
|
||||
CefRefPtr<CefCommandLine> command_line() const { return command_line_; }
|
||||
CefString root_cache_path() const { return root_cache_path_; }
|
||||
|
||||
// The return value from Run().
|
||||
int retval() const { return retval_; }
|
||||
@@ -50,6 +50,8 @@ class CefTestSuite {
|
||||
std::vector<CefString> temp_directories_;
|
||||
base::Lock temp_directories_lock_;
|
||||
|
||||
CefString root_cache_path_;
|
||||
|
||||
int retval_;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user