Index: chromecast/browser/url_request_context_factory.h |
diff --git a/chromecast/browser/url_request_context_factory.h b/chromecast/browser/url_request_context_factory.h |
index 5ae43cb7a4a626853a7c3a6d28ee140f30038b89..c0d881d83f9c01415761ff08ca15c79a80a8e0c2 100644 |
--- a/chromecast/browser/url_request_context_factory.h |
+++ b/chromecast/browser/url_request_context_factory.h |
@@ -11,6 +11,7 @@ |
namespace net { |
class HttpTransactionFactory; |
class HttpUserAgentSettings; |
+class NetLog; |
class ProxyConfigService; |
class URLRequestJobFactory; |
} // namespace net |
@@ -25,7 +26,7 @@ class URLRequestContextFactory { |
~URLRequestContextFactory(); |
// Some members must be initialized on UI thread. |
- void InitializeOnUIThread(); |
+ void InitializeOnUIThread(net::NetLog* net_log); |
// Since main context requires a bunch of input params, if these get called |
// multiple times, either multiple main contexts should be supported/managed |
@@ -113,6 +114,8 @@ class URLRequestContextFactory { |
bool media_dependencies_initialized_; |
scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
+ |
+ net::NetLog* net_log_; |
}; |
} // namespace shell |