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

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

Issue 473723002: Update data reduction proxy statistics prefs less often on desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tooManyWritesPatch
Patch Set: Addressed bengr comments Created 6 years, 3 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 12 matching lines...) Expand all
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 DataReductionProxyConfigurator;
32 class DataReductionProxySettings; 32 class DataReductionProxySettings;
33 class DataReductionProxyStatisticsPrefs;
33 } 34 }
34 35
35 namespace net { 36 namespace net {
36 class CookieStore; 37 class CookieStore;
37 } 38 }
38 39
39 namespace visitedlink { 40 namespace visitedlink {
40 class VisitedLinkMaster; 41 class VisitedLinkMaster;
41 } 42 }
42 43
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 130
130 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; 131 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_;
131 scoped_ptr<content::ResourceContext> resource_context_; 132 scoped_ptr<content::ResourceContext> resource_context_;
132 133
133 scoped_ptr<PrefService> user_pref_service_; 134 scoped_ptr<PrefService> user_pref_service_;
134 135
135 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> 136 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
136 data_reduction_proxy_configurator_; 137 data_reduction_proxy_configurator_;
137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> 138 scoped_ptr<data_reduction_proxy::DataReductionProxySettings>
138 data_reduction_proxy_settings_; 139 data_reduction_proxy_settings_;
140 scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
141 data_reduction_proxy_statistics_prefs_;
139 142
140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 143 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
141 }; 144 };
142 145
143 } // namespace android_webview 146 } // namespace android_webview
144 147
145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 148 #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') | android_webview/browser/aw_browser_context.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698