Index: chrome/browser/io_thread.h |
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
index 7b3e2032c4b4115880a446bb5133652d41359b4e..51ab3c307583c3685795bdb59fe7ee8890c10567 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_auth_request_handler.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" |
@@ -186,6 +187,8 @@ class IOThread : public content::BrowserThreadDelegate { |
scoped_ptr<chrome_browser_net::DnsProbeService> dns_probe_service; |
scoped_ptr<data_reduction_proxy::DataReductionProxyParams> |
data_reduction_proxy_params; |
+ scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler> |
+ data_reduction_proxy_auth_request_handler; |
}; |
// |net_log| must either outlive the IOThread or be NULL. |