Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5641)

Unified Diff: chrome/browser/net/sqlite_channel_id_store.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/sqlite_channel_id_store.h ('k') | chrome/browser/profiles/off_the_record_profile_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/sqlite_channel_id_store.cc
diff --git a/chrome/browser/net/sqlite_channel_id_store.cc b/chrome/browser/net/sqlite_channel_id_store.cc
index 15bad3dc31ae909ed3d5d4d1ed73ba8f86058cc3..374a5dc6d89900b89e1fba039b9f27ec8a1ddcba 100644
--- a/chrome/browser/net/sqlite_channel_id_store.cc
+++ b/chrome/browser/net/sqlite_channel_id_store.cc
@@ -36,7 +36,7 @@ class SQLiteChannelIDStore::Backend
Backend(
const base::FilePath& path,
const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
- quota::SpecialStoragePolicy* special_storage_policy)
+ storage::SpecialStoragePolicy* special_storage_policy)
: path_(path),
num_pending_(0),
force_keep_session_state_(false),
@@ -130,7 +130,7 @@ class SQLiteChannelIDStore::Backend
scoped_refptr<base::SequencedTaskRunner> background_task_runner_;
- scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
+ scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy_;
// Indicates if the kill-database callback has been scheduled.
bool corruption_detected_;
@@ -610,10 +610,10 @@ void SQLiteChannelIDStore::Backend::SetForceKeepSessionState() {
SQLiteChannelIDStore::SQLiteChannelIDStore(
const base::FilePath& path,
const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
- quota::SpecialStoragePolicy* special_storage_policy)
- : backend_(new Backend(path,
- background_task_runner,
- special_storage_policy)) {}
+ storage::SpecialStoragePolicy* special_storage_policy)
+ : backend_(
+ new Backend(path, background_task_runner, special_storage_policy)) {
+}
void SQLiteChannelIDStore::Load(
const LoadedCallback& loaded_callback) {
« no previous file with comments | « chrome/browser/net/sqlite_channel_id_store.h ('k') | chrome/browser/profiles/off_the_record_profile_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698