Index: chrome/browser/profiles/off_the_record_profile_io_data.cc |
diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.cc b/chrome/browser/profiles/off_the_record_profile_io_data.cc |
index c2dbe5ceb503d411fc3c9d4fb85eebba369aa49b..53cf0dd5c4d0737e6ceed1b54682baa092b2840e 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_io_data.cc |
+++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc |
@@ -19,7 +19,6 @@ |
#include "chrome/browser/net/about_protocol_handler.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/chrome_url_request_context_getter.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/common/chrome_switches.h" |
@@ -34,6 +33,7 @@ |
#include "net/http/http_cache.h" |
#include "net/http/http_network_session.h" |
#include "net/http/http_server_properties_impl.h" |
+#include "net/sdch/sdch_owner.h" |
#include "net/ssl/channel_id_service.h" |
#include "net/ssl/default_channel_id_store.h" |
#include "net/url_request/url_request_job_factory_impl.h" |
@@ -281,7 +281,7 @@ void OffTheRecordProfileIOData::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()); |
#if defined(ENABLE_EXTENSIONS) |