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

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 792803007: Make Data Reduction Proxy a best effort proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated tests Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index 862385c38da56cc92aa2a7d44dbe60b63b1d5baf..966e86b3b7ae3fca755c43497010f2c8ab3c656b 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -19,11 +19,11 @@
#include "base/synchronization/lock.h"
#include "chrome/browser/custom_handlers/protocol_handler_registry.h"
#include "chrome/browser/io_thread.h"
-#include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_configurator.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/storage_partition_descriptor.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler.h"
+#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_statistics_prefs.h"
#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats.h"
#include "components/data_reduction_proxy/core/common/data_reduction_proxy_event_store.h"
@@ -411,16 +411,16 @@ class ProfileIOData {
data_reduction_proxy_unavailable_callback_ = unavailable_callback;
}
- DataReductionProxyChromeConfigurator*
- data_reduction_proxy_chrome_configurator() const {
- return data_reduction_proxy_chrome_configurator_.get();
+ data_reduction_proxy::DataReductionProxyConfigurator*
+ data_reduction_proxy_configurator() const {
+ return data_reduction_proxy_configurator_.get();
}
- void set_data_reduction_proxy_chrome_configurator(
- scoped_ptr<DataReductionProxyChromeConfigurator>
- data_reduction_proxy_chrome_configurator) const {
- data_reduction_proxy_chrome_configurator_ =
- data_reduction_proxy_chrome_configurator.Pass();
+ void set_data_reduction_proxy_configurator(
+ scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
+ data_reduction_proxy_configurator) const {
+ data_reduction_proxy_configurator_ =
+ data_reduction_proxy_configurator.Pass();
}
data_reduction_proxy::DataReductionProxyAuthRequestHandler*
@@ -656,8 +656,8 @@ class ProfileIOData {
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
data_reduction_proxy_statistics_prefs_;
mutable base::Callback<void(bool)> data_reduction_proxy_unavailable_callback_;
- mutable scoped_ptr<DataReductionProxyChromeConfigurator>
- data_reduction_proxy_chrome_configurator_;
+ mutable scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
+ data_reduction_proxy_configurator_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
data_reduction_proxy_auth_request_handler_;
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore>
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698