Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1783)

Side by Side Diff: android_webview/browser/aw_browser_context.h

Issue 449973002: Use data reduction proxy when managed proxy config returns direct (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no-uma-in-proxy-service
Patch Set: Addressed comment and nit Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_AW_BROWSER_CONTEXT_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "android_webview/browser/aw_download_manager_delegate.h" 10 #include "android_webview/browser/aw_download_manager_delegate.h"
(...skipping 10 matching lines...) Expand all
21 class GURL; 21 class GURL;
22 class PrefService; 22 class PrefService;
23 23
24 namespace content { 24 namespace content {
25 class ResourceContext; 25 class ResourceContext;
26 class SSLHostStateDelegate; 26 class SSLHostStateDelegate;
27 class WebContents; 27 class WebContents;
28 } 28 }
29 29
30 namespace data_reduction_proxy { 30 namespace data_reduction_proxy {
31 class DataReductionProxyConfigurator;
31 class DataReductionProxySettings; 32 class DataReductionProxySettings;
32 } 33 }
33 34
34 namespace net { 35 namespace net {
35 class CookieStore; 36 class CookieStore;
36 } 37 }
37 38
38 namespace visitedlink { 39 namespace visitedlink {
39 class VisitedLinkMaster; 40 class VisitedLinkMaster;
40 } 41 }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 scoped_refptr<AwQuotaManagerBridge> quota_manager_bridge_; 125 scoped_refptr<AwQuotaManagerBridge> quota_manager_bridge_;
125 scoped_ptr<AwFormDatabaseService> form_database_service_; 126 scoped_ptr<AwFormDatabaseService> form_database_service_;
126 127
127 AwDownloadManagerDelegate download_manager_delegate_; 128 AwDownloadManagerDelegate download_manager_delegate_;
128 129
129 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; 130 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_;
130 scoped_ptr<content::ResourceContext> resource_context_; 131 scoped_ptr<content::ResourceContext> resource_context_;
131 132
132 scoped_ptr<PrefService> user_pref_service_; 133 scoped_ptr<PrefService> user_pref_service_;
133 134
135 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
136 data_reduction_proxy_configurator_;
134 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> 137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings>
135 data_reduction_proxy_settings_; 138 data_reduction_proxy_settings_;
136 139
137 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
138 }; 141 };
139 142
140 } // namespace android_webview 143 } // namespace android_webview
141 144
142 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | chrome/browser/net/chrome_network_delegate.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698