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

Unified Diff: chrome/browser/browsing_data/browsing_data_indexed_db_helper.h

Issue 10836216: Add SiteInstance parameters to IndexedDBContext calls (Closed) Base URL: http://git.chromium.org/chromium/src.git@isolated-storage
Patch Set: Candidate patch Created 8 years, 3 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/browsing_data/browsing_data_indexed_db_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
index de0504c10cd43168b0bd4d0ad5129e0c491556a7..52ff22c9655167e47a50fbdcd59aeaca487ee358 100644
--- a/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_indexed_db_helper.h
@@ -18,6 +18,10 @@
#include "googleurl/src/gurl.h"
class Profile;
awong 2012/09/10 21:55:21 Newline before the namespace opening line.
alecflett 2012/09/10 23:14:55 Done.
+namespace content {
+class SiteInstance;
awong 2012/09/10 21:55:21 SiteInstance doesn't needed here. Remove?
alecflett 2012/09/10 23:14:55 Done.
+class IndexedDBContext;
+}
// BrowsingDataIndexedDBHelper is an interface for classes dealing with
// aggregating and deleting browsing data stored in indexed databases. A
@@ -42,7 +46,8 @@ class BrowsingDataIndexedDBHelper
// Create a BrowsingDataIndexedDBHelper instance for the indexed databases
// stored in |profile|'s user data directory.
- static BrowsingDataIndexedDBHelper* Create(Profile* profile);
+ static BrowsingDataIndexedDBHelper* Create(
+ content::IndexedDBContext* context);
// Starts the fetching process, which will notify its completion via
// callback.

Powered by Google App Engine
This is Rietveld 408576698