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

Unified Diff: chrome/browser/content_settings/local_shared_objects_container.cc

Issue 17518004: Move IndexedDB from WEBKIT_DEPRECATED to dedicated thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing files Created 7 years, 6 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
Index: chrome/browser/content_settings/local_shared_objects_container.cc
diff --git a/chrome/browser/content_settings/local_shared_objects_container.cc b/chrome/browser/content_settings/local_shared_objects_container.cc
index 3fd6d068dbfb6609e510a3bfabd25d7b78e64a44..1dd938c5453244aa44fa69299c618894800f2637 100644
--- a/chrome/browser/content_settings/local_shared_objects_container.cc
+++ b/chrome/browser/content_settings/local_shared_objects_container.cc
@@ -29,7 +29,7 @@ bool SamePublicDomainOrHost(const GURL& gurl1, const GURL& gurl2) {
net::registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);
}
-}
+} // namespace
LocalSharedObjectsContainer::LocalSharedObjectsContainer(Profile* profile)
michaeln 2013/06/21 19:35:57 i hope this class is test code but it's not labele
jsbell 2013/06/24 17:50:43 It's not - instances of this class apparently hold
: appcaches_(new CannedBrowsingDataAppCacheHelper(profile)),
@@ -37,7 +37,7 @@ LocalSharedObjectsContainer::LocalSharedObjectsContainer(Profile* profile)
profile->GetRequestContext())),
databases_(new CannedBrowsingDataDatabaseHelper(profile)),
file_systems_(new CannedBrowsingDataFileSystemHelper(profile)),
- indexed_dbs_(new CannedBrowsingDataIndexedDBHelper()),
+ indexed_dbs_(new CannedBrowsingDataIndexedDBHelper(profile)),
local_storages_(new CannedBrowsingDataLocalStorageHelper(profile)),
server_bound_certs_(new CannedBrowsingDataServerBoundCertHelper()),
session_storages_(new CannedBrowsingDataLocalStorageHelper(profile)) {

Powered by Google App Engine
This is Rietveld 408576698