Chromium Code Reviews| 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. |