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

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

Issue 10908065: Introduce a couple of abstract bases for WebDataService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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/webdata/web_data_service.cc
diff --git a/chrome/browser/webdata/web_data_service.cc b/chrome/browser/webdata/web_data_service.cc
index 84514fe7a6b367dcb7f81f9fdbc23cbf38ebfbb0..a355485452a04cfcbd8f5bb692d3cc91315c8801 100644
--- a/chrome/browser/webdata/web_data_service.cc
+++ b/chrome/browser/webdata/web_data_service.cc
@@ -61,7 +61,7 @@ void NotifyOfMultipleAutofillChangesTask(
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_AUTOFILL_MULTIPLE_CHANGED,
- content::Source<WebDataService>(web_data_service.get()),
+ content::Source<WebDataServiceBase>(web_data_service.get()),
content::NotificationService::NoDetails());
}
@@ -81,8 +81,7 @@ WDKeywordsResult::WDKeywordsResult()
WDKeywordsResult::~WDKeywordsResult() {}
WebDataService::WebDataService()
- : RefcountedProfileKeyedService(BrowserThread::UI),
- is_running_(false),
+ : is_running_(false),
db_(NULL),
autocomplete_syncable_service_(NULL),
autofill_profile_syncable_service_(NULL),

Powered by Google App Engine
This is Rietveld 408576698