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

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

Issue 364343002: Kill WebDataService, move (WIN only) Password code into separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix 2 Created 6 years, 5 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/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 1c80eac20e594bc38976555f173951b81efd18e9..08d6c2868853d5f17893a9ac198f914e77d5d83a 100644
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
@@ -209,7 +209,7 @@ class TokenWebDataServiceFake : public TokenWebData {
return true;
}
- virtual WebDataService::Handle GetAllTokens(
+ virtual AutofillWebDataService::Handle GetAllTokens(
WebDataServiceConsumer* consumer) OVERRIDE {
// TODO(tim): It would be nice if WebDataService was injected on
// construction of ProfileOAuth2TokenService rather than fetched by
@@ -343,7 +343,6 @@ class WebDataServiceFake : public AutofillWebDataService {
KeyedService* BuildMockWebDataServiceWrapper(content::BrowserContext* profile) {
return new MockWebDataServiceWrapper(
- NULL,
new WebDataServiceFake(),
new TokenWebDataServiceFake());
}

Powered by Google App Engine
This is Rietveld 408576698