| Index: chrome/browser/profiles/profile_impl_io_data.h
|
| diff --git a/chrome/browser/profiles/profile_impl_io_data.h b/chrome/browser/profiles/profile_impl_io_data.h
|
| index 3a6f529e12e4f66849261f4d216fa4e017164610..68f5e56297d81ec610a3dcd6c34267e8552f7295 100644
|
| --- a/chrome/browser/profiles/profile_impl_io_data.h
|
| +++ b/chrome/browser/profiles/profile_impl_io_data.h
|
| @@ -39,6 +39,7 @@ class FtpTransactionFactory;
|
| class HttpServerProperties;
|
| class HttpServerPropertiesManager;
|
| class HttpTransactionFactory;
|
| +class ProxyConfig;
|
| class SDCHManager;
|
| } // namespace net
|
|
|
| @@ -72,6 +73,8 @@ class ProfileImplIOData : public ProfileIOData {
|
| domain_reliability_monitor,
|
| const base::Callback<void(bool)>&
|
| data_reduction_proxy_unavailable,
|
| + const base::Callback<const net::ProxyConfig&()>&
|
| + proxy_config_getter,
|
| scoped_ptr<data_reduction_proxy::DataReductionProxyParams>
|
| data_reduction_proxy_params);
|
|
|
| @@ -249,6 +252,7 @@ class ProfileImplIOData : public ProfileIOData {
|
| mutable scoped_ptr<data_reduction_proxy::DataReductionProxyUsageStats>
|
| data_reduction_proxy_usage_stats_;
|
| mutable base::Callback<void(bool)> data_reduction_proxy_unavailable_callback_;
|
| + mutable base::Callback<const net::ProxyConfig&()> proxy_config_getter_;
|
| mutable scoped_ptr<data_reduction_proxy::DataReductionProxyAuthRequestHandler>
|
| data_reduction_proxy_auth_request_handler_;
|
| #endif // defined(SPDY_PROXY_AUTH_ORIGIN)
|
|
|