OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 12 matching lines...) Expand all Loading... | |
23 class URLRequestJobFactory; | 23 class URLRequestJobFactory; |
24 } | 24 } |
25 | 25 |
26 namespace data_reduction_proxy { | 26 namespace data_reduction_proxy { |
27 class DataReductionProxyAuthRequestHandler; | 27 class DataReductionProxyAuthRequestHandler; |
28 class DataReductionProxyConfigService; | 28 class DataReductionProxyConfigService; |
29 } | 29 } |
30 | 30 |
31 namespace android_webview { | 31 namespace android_webview { |
32 | 32 |
33 class AwDataReductionProxyStatisticsPrefs; | |
sgurun-gerrit only
2014/10/17 20:29:38
stale?
hush (inactive)
2014/10/17 21:19:47
Done.
| |
33 class AwNetworkDelegate; | 34 class AwNetworkDelegate; |
34 | 35 |
35 class AwURLRequestContextGetter : public net::URLRequestContextGetter { | 36 class AwURLRequestContextGetter : public net::URLRequestContextGetter { |
36 public: | 37 public: |
37 AwURLRequestContextGetter( | 38 AwURLRequestContextGetter( |
38 const base::FilePath& partition_path, | 39 const base::FilePath& partition_path, |
39 net::CookieStore* cookie_store, | 40 net::CookieStore* cookie_store, |
40 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigService> | 41 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigService> |
41 config_service); | 42 config_service); |
42 | 43 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 // SetHandlersAndInterceptors() and the first GetURLRequestContext() call. | 88 // SetHandlersAndInterceptors() and the first GetURLRequestContext() call. |
88 content::ProtocolHandlerMap protocol_handlers_; | 89 content::ProtocolHandlerMap protocol_handlers_; |
89 content::URLRequestInterceptorScopedVector request_interceptors_; | 90 content::URLRequestInterceptorScopedVector request_interceptors_; |
90 | 91 |
91 DISALLOW_COPY_AND_ASSIGN(AwURLRequestContextGetter); | 92 DISALLOW_COPY_AND_ASSIGN(AwURLRequestContextGetter); |
92 }; | 93 }; |
93 | 94 |
94 } // namespace android_webview | 95 } // namespace android_webview |
95 | 96 |
96 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 97 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
OLD | NEW |