Index: chrome/browser/profiles/profile_impl_io_data.cc |
diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc |
index f47f7157c64e948deb5f42acba0a04289227fb0f..fce1245f93b543963cf2650546bff96f8a822382 100644 |
--- a/chrome/browser/profiles/profile_impl_io_data.cc |
+++ b/chrome/browser/profiles/profile_impl_io_data.cc |
@@ -31,6 +31,7 @@ |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/common/chrome_constants.h" |
#include "chrome/common/chrome_switches.h" |
+#include "chrome/common/chrome_version_info.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/common/url_constants.h" |
#include "components/domain_reliability/monitor.h" |
@@ -430,10 +431,11 @@ void ProfileImplIOData::InitializeInternal( |
IOThread::Globals* const io_thread_globals = io_thread->globals(); |
#if defined(SPDY_PROXY_AUTH_ORIGIN) |
+ chrome::VersionInfo version_info; |
data_reduction_proxy_auth_request_handler_.reset( |
new data_reduction_proxy::DataReductionProxyAuthRequestHandler( |
DataReductionProxyChromeSettings::GetClient(), |
- DataReductionProxyChromeSettings::GetBuildAndPatchNumber(), |
+ version_info.Version(), |
mmenke
2014/09/04 19:12:10
Per comment in other file, you don't need the loca
megjablon
2014/09/04 19:16:36
Done.
|
data_reduction_proxy_params_.get(), |
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO))); |
data_reduction_proxy_usage_stats_.reset( |