Chromium Code Reviews| 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 1c49b319401cd8cfc93508229b8a679235edf610..b7f05272cfbfa141ff1ed984a88efe3294109abf 100644 |
| --- a/chrome/browser/profiles/profile_impl_io_data.cc |
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc |
| @@ -26,13 +26,13 @@ |
| #include "chrome/browser/net/cookie_store_util.h" |
| #include "chrome/browser/net/http_server_properties_manager_factory.h" |
| #include "chrome/browser/net/predictor.h" |
| -#include "chrome/browser/net/sqlite_channel_id_store.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/common/chrome_constants.h" |
| #include "chrome/common/chrome_switches.h" |
| #include "chrome/common/pref_names.h" |
| #include "chrome/common/url_constants.h" |
| #include "components/domain_reliability/monitor.h" |
| +#include "content/browser/net/quota_policy_channel_id_store.h" |
|
Lei Zhang
2014/08/12 21:27:19
Don't you have to go through content/public ?
|
| #include "content/public/browser/browser_thread.h" |
| #include "content/public/browser/cookie_store_factory.h" |
| #include "content/public/browser/notification_service.h" |
| @@ -506,8 +506,8 @@ void ProfileImplIOData::InitializeInternal( |
| if (!channel_id_service) { |
| DCHECK(!lazy_params_->channel_id_path.empty()); |
| - scoped_refptr<SQLiteChannelIDStore> channel_id_db = |
| - new SQLiteChannelIDStore( |
| + scoped_refptr<content::QuotaPolicyChannelIDStore> channel_id_db = |
| + new content::QuotaPolicyChannelIDStore( |
| lazy_params_->channel_id_path, |
| BrowserThread::GetBlockingPool()->GetSequencedTaskRunner( |
| BrowserThread::GetBlockingPool()->GetSequenceToken()), |