Index: android_webview/browser/aw_browser_context.cc |
diff --git a/android_webview/browser/aw_browser_context.cc b/android_webview/browser/aw_browser_context.cc |
index 62482cab9745a8d9873f186da752e44c929099e7..cfc728e0a5fe4c33c134723de2681596f6b1db2d 100644 |
--- a/android_webview/browser/aw_browser_context.cc |
+++ b/android_webview/browser/aw_browser_context.cc |
@@ -51,9 +51,11 @@ bool AwBrowserContext::data_reduction_proxy_enabled_ = false; |
AwBrowserContext::AwBrowserContext( |
const FilePath path, |
- JniDependencyFactory* native_factory) |
+ JniDependencyFactory* native_factory, |
+ net::NetLog* net_log) |
: context_storage_path_(path), |
- native_factory_(native_factory) { |
+ native_factory_(native_factory), |
+ net_log_(net_log) { |
DCHECK(!g_browser_context); |
g_browser_context = this; |
@@ -127,7 +129,8 @@ void AwBrowserContext::PreMainMessageLoopRun() { |
url_request_context_getter_ = |
new AwURLRequestContextGetter(GetPath(), |
cookie_store_.get(), |
- data_reduction_proxy_config_service.Pass()); |
+ data_reduction_proxy_config_service.Pass(), |
+ net_log_); |
visitedlink_master_.reset( |
new visitedlink::VisitedLinkMaster(this, this, false)); |