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

Unified Diff: chrome/browser/webdata/web_data_service.h

Issue 12695015: Split Autofill webdata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge to 12853004 (move table creation to factory) Created 7 years, 9 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/webdata/web_data_service.h
diff --git a/chrome/browser/webdata/web_data_service.h b/chrome/browser/webdata/web_data_service.h
index 18cee013578bd33313fa73e7de1787dad36d83e1..2e89d3ecb8d93353c7e3de0cde799b69d671ef76 100644
--- a/chrome/browser/webdata/web_data_service.h
+++ b/chrome/browser/webdata/web_data_service.h
@@ -107,8 +107,9 @@ class WebDataService
static scoped_refptr<WebDataService> FromBrowserContext(
content::BrowserContext* context);
- WebDataService(const base::FilePath& path,
- const ProfileErrorCallback& callback);
+ WebDataService(
+ scoped_refptr<WebDatabaseService> wdbs,
+ const ProfileErrorCallback& callback);
// Notifies listeners on the UI thread that multiple changes have been made to
// to Autofill records of the database.
@@ -117,8 +118,6 @@ class WebDataService
// |web_data_service| may be NULL for testing purposes.
static void NotifyOfMultipleAutofillChanges(WebDataService* web_data_service);
-
-
//////////////////////////////////////////////////////////////////////////////
//
// Keywords
@@ -301,7 +300,7 @@ class WebDataService
private:
//////////////////////////////////////////////////////////////////////////////
//
- // The following methods are only invoked in the web data service thread.
+ // The following methods are only invoked on the DB thread.
//
//////////////////////////////////////////////////////////////////////////////

Powered by Google App Engine
This is Rietveld 408576698