| Index: android_webview/browser/aw_browser_context.h
|
| diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h
|
| index 0d3fe4298d168a478478cd1ffc2070643584f7e0..3cc39874f36155923169e533f5fe1940b1f4f68b 100644
|
| --- a/android_webview/browser/aw_browser_context.h
|
| +++ b/android_webview/browser/aw_browser_context.h
|
| @@ -34,6 +34,7 @@ class DataReductionProxySettings;
|
|
|
| namespace net {
|
| class CookieStore;
|
| +class NetLog;
|
| }
|
|
|
| namespace visitedlink {
|
| @@ -52,7 +53,8 @@ class AwBrowserContext : public content::BrowserContext,
|
| public:
|
|
|
| AwBrowserContext(const base::FilePath path,
|
| - JniDependencyFactory* native_factory);
|
| + JniDependencyFactory* native_factory,
|
| + net::NetLog* net_log);
|
| virtual ~AwBrowserContext();
|
|
|
| // Currently only one instance per process is supported.
|
| @@ -120,6 +122,7 @@ class AwBrowserContext : public content::BrowserContext,
|
| base::FilePath context_storage_path_;
|
|
|
| JniDependencyFactory* native_factory_;
|
| + net::NetLog* net_log_;
|
| scoped_refptr<net::CookieStore> cookie_store_;
|
| scoped_refptr<AwURLRequestContextGetter> url_request_context_getter_;
|
| scoped_refptr<AwQuotaManagerBridge> quota_manager_bridge_;
|
|
|