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 451725252ca0d3d7edeae6912fec753348f5e8ee..244107f4e39bf987b1b1366e9a241e45170bb2dc 100644 |
--- a/chrome/browser/profiles/profile_io_data.h |
+++ b/chrome/browser/profiles/profile_io_data.h |
@@ -451,10 +451,6 @@ class ProfileIOData { |
data_reduction_proxy_event_store.Pass(); |
} |
- ChromeNetworkDelegate* network_delegate() const { |
- return network_delegate_.get(); |
- } |
- |
net::FraudulentCertificateReporter* fraudulent_certificate_reporter() const { |
return fraudulent_certificate_reporter_.get(); |
} |
@@ -534,6 +530,7 @@ class ProfileIOData { |
// Does the actual initialization of the ProfileIOData subtype. Subtypes |
// should use the static helper functions above to implement this. |
virtual void InitializeInternal( |
+ scoped_ptr<ChromeNetworkDelegate> chrome_network_delegate, |
ProfileParams* profile_params, |
content::ProtocolHandlerMap* protocol_handlers, |
content::URLRequestInterceptorScopedVector |
@@ -662,7 +659,7 @@ class ProfileIOData { |
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyUsageStats> |
data_reduction_proxy_usage_stats_; |
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs> |
- data_reduction_proxy_statistics_prefs_; |
+ data_reduction_proxy_statistics_prefs_; |
mutable base::Callback<void(bool)> data_reduction_proxy_unavailable_callback_; |
mutable scoped_ptr<DataReductionProxyChromeConfigurator> |
data_reduction_proxy_chrome_configurator_; |
@@ -671,7 +668,6 @@ class ProfileIOData { |
mutable scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore> |
data_reduction_proxy_event_store_; |
- mutable scoped_ptr<ChromeNetworkDelegate> network_delegate_; |
mutable scoped_ptr<net::FraudulentCertificateReporter> |
fraudulent_certificate_reporter_; |
mutable scoped_ptr<net::ProxyService> proxy_service_; |