Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1480)

Unified Diff: chrome/browser/net/proxy_service_factory.h

Issue 11959029: Make the v8 Isolate used in the proxy resolver explicit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed component build Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/net/proxy_service_factory.h
diff --git a/chrome/browser/net/proxy_service_factory.h b/chrome/browser/net/proxy_service_factory.h
index 7bf85cf9df2590e46baeec056b9cd0a41dfea564..8eebf2c7a05f0a0ec02c74fe29e08d3dba519d07 100644
--- a/chrome/browser/net/proxy_service_factory.h
+++ b/chrome/browser/net/proxy_service_factory.h
@@ -25,6 +25,10 @@ class ProxyService;
class URLRequestContext;
} // namespace net
+namespace v8 {
+class Isolate;
+} // namespace v8
+
class ProxyServiceFactory {
public:
// Creates a ProxyConfigService that delivers the system preferences
@@ -48,6 +52,7 @@ class ProxyServiceFactory {
net::NetLog* net_log,
net::URLRequestContext* context,
net::ProxyConfigService* proxy_config_service,
+ v8::Isolate* v8_default_isolate,
const CommandLine& command_line);
private:

Powered by Google App Engine
This is Rietveld 408576698