Index: chrome/browser/io_thread.h |
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
index e3c19f29c8a4cca3759dc00b51db63da1f77438b..f1783cd86382ba8648d1522f696b592653a5f719 100644 |
--- a/chrome/browser/io_thread.h |
+++ b/chrome/browser/io_thread.h |
@@ -16,6 +16,7 @@ |
#include "base/prefs/pref_member.h" |
#include "base/time/time.h" |
#include "chrome/browser/net/ssl_config_service_manager.h" |
+#include "components/data_reduction_proxy/browser/data_reduction_proxy_params.h" |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/browser_thread_delegate.h" |
#include "net/base/network_change_notifier.h" |
@@ -180,6 +181,8 @@ class IOThread : public content::BrowserThreadDelegate { |
// information to the renderer so it can show a more specific error page. |
scoped_ptr<chrome_browser_net::DnsProbeService> dns_probe_service; |
scoped_ptr<net::NetworkTimeNotifier> network_time_notifier; |
+ scoped_ptr<data_reduction_proxy::DataReductionProxyParams> |
+ data_reduction_proxy_params; |
}; |
// |net_log| must either outlive the IOThread or be NULL. |
@@ -347,7 +350,6 @@ class IOThread : public content::BrowserThreadDelegate { |
std::string auth_server_whitelist_; |
std::string auth_delegate_whitelist_; |
std::string gssapi_library_name_; |
- std::vector<GURL> spdyproxy_auth_origins_; |
// This is an instance of the default SSLConfigServiceManager for the current |
// platform and it gets SSL preferences from local_state object. |