| 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 29a21a32b65c30da68334f5a5734a8ee846f1ddd..097f8af4c25b62a0c82e72b97b7796a2f210df39 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/chrome_net_log.h"
|
| #include "chrome/browser/net/chrome_network_delegate.h"
|
| #include "chrome/browser/net/chrome_url_request_context.h"
|
| -#include "chrome/browser/net/sdch_dictionary_fetcher.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| @@ -29,6 +28,7 @@
|
| #include "content/public/browser/resource_context.h"
|
| #include "extensions/common/constants.h"
|
| #include "extensions/common/extension.h"
|
| +#include "net/base/sdch_dictionary_fetcher.h"
|
| #include "net/base/sdch_manager.h"
|
| #include "net/ftp/ftp_network_layer.h"
|
| #include "net/http/http_cache.h"
|
| @@ -256,7 +256,7 @@ void OffTheRecordProfileIOData::InitializeInternal(
|
| // Setup the SDCHManager for this profile.
|
| sdch_manager_.reset(new net::SdchManager);
|
| sdch_manager_->set_sdch_fetcher(
|
| - new SdchDictionaryFetcher(
|
| + new net::SdchDictionaryFetcher(
|
| sdch_manager_.get(),
|
| // SdchDictionaryFetcher takes a reference to the Getter, and
|
| // hence implicitly takes ownership.
|
|
|