| Index: android_webview/browser/net/aw_url_request_context_getter.h
|
| diff --git a/android_webview/browser/net/aw_url_request_context_getter.h b/android_webview/browser/net/aw_url_request_context_getter.h
|
| index 1ec4123630a8bb6d7e08ef2a90cd5dcbdaf6e279..7c9630baa468f3603c924e0f62179df10d0decd5 100644
|
| --- a/android_webview/browser/net/aw_url_request_context_getter.h
|
| +++ b/android_webview/browser/net/aw_url_request_context_getter.h
|
| @@ -17,6 +17,7 @@
|
| namespace net {
|
| class CookieStore;
|
| class HttpTransactionFactory;
|
| +class NetLog;
|
| class ProxyConfigService;
|
| class URLRequestContext;
|
| class URLRequestJobFactory;
|
| @@ -37,7 +38,8 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
|
| const base::FilePath& partition_path,
|
| net::CookieStore* cookie_store,
|
| scoped_ptr<data_reduction_proxy::DataReductionProxyConfigService>
|
| - config_service);
|
| + config_service,
|
| + net::NetLog* net_log);
|
|
|
| void InitializeOnNetworkThread();
|
|
|
| @@ -74,6 +76,7 @@ class AwURLRequestContextGetter : public net::URLRequestContextGetter {
|
| data_reduction_proxy_auth_request_handler_;
|
| scoped_ptr<net::URLRequestJobFactory> job_factory_;
|
| scoped_ptr<net::HttpTransactionFactory> main_http_factory_;
|
| + net::NetLog* net_log_;
|
|
|
| // ProtocolHandlers and interceptors are stored here between
|
| // SetHandlersAndInterceptors() and the first GetURLRequestContext() call.
|
|
|