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

Unified Diff: chrome/browser/sync/profile_sync_service_autofill_unittest.cc

Issue 15734014: Split token-related methods from WebDataService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DEPs again Created 7 years, 7 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
« no previous file with comments | « chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc ('k') | chrome/browser/webdata/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/profile_sync_service_autofill_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
index 31e1895b47cc86d0a1f08a6766d9b50dd0aee403..b2d88c2990ee06ffd739c77e387b12cc7b877a01 100644
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
@@ -187,10 +187,10 @@ syncer::ModelType GetModelType<AutofillProfile>() {
return syncer::AUTOFILL_PROFILE;
}
-class TokenWebDataServiceFake : public WebDataService {
+class TokenWebDataServiceFake : public TokenWebData {
public:
TokenWebDataServiceFake()
- : WebDataService() {
+ : TokenWebData() {
}
virtual bool IsDatabaseLoaded() OVERRIDE {
@@ -333,8 +333,9 @@ class WebDataServiceFake : public AutofillWebDataService {
BrowserContextKeyedService* BuildMockWebDataServiceWrapper(
content::BrowserContext* profile) {
return new MockWebDataServiceWrapper(
- new TokenWebDataServiceFake(),
- new WebDataServiceFake());
+ NULL,
+ new WebDataServiceFake(),
+ new TokenWebDataServiceFake());
}
ACTION_P(MakeAutocompleteSyncComponents, wds) {
« no previous file with comments | « chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc ('k') | chrome/browser/webdata/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698