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 74b1727b2db70b30c3c53c715a5544f5a6245454..aa845de39ccae0001992c75ac9a58d7e6cce710a 100644 |
--- a/chrome/browser/profiles/profile_impl_io_data.cc |
+++ b/chrome/browser/profiles/profile_impl_io_data.cc |
@@ -23,7 +23,6 @@ |
#include "chrome/browser/io_thread.h" |
#include "chrome/browser/net/chrome_net_log.h" |
#include "chrome/browser/net/chrome_network_delegate.h" |
-#include "chrome/browser/net/chrome_sdch_policy.h" |
#include "chrome/browser/net/connect_interceptor.h" |
#include "chrome/browser/net/cookie_store_util.h" |
#include "chrome/browser/net/http_server_properties_manager_factory.h" |
@@ -57,6 +56,7 @@ |
#include "net/ftp/ftp_network_layer.h" |
#include "net/http/http_cache.h" |
#include "net/http/http_server_properties_manager.h" |
+#include "net/sdch/sdch_owner.h" |
#include "net/ssl/channel_id_service.h" |
#include "net/url_request/url_request_intercepting_job_factory.h" |
#include "net/url_request/url_request_job_factory_impl.h" |
@@ -663,7 +663,7 @@ void ProfileImplIOData::InitializeInternal( |
// Setup SDCH for this profile. |
sdch_manager_.reset(new net::SdchManager); |
- sdch_policy_.reset(new ChromeSdchPolicy(sdch_manager_.get(), main_context)); |
+ sdch_policy_.reset(new net::SdchOwner(sdch_manager_.get(), main_context)); |
main_context->set_sdch_manager(sdch_manager_.get()); |
// Create a media request context based on the main context, but using a |