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

Unified Diff: chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc

Issue 12780012: Move UI dependency from WebDataService to WebDataServiceFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/sync/glue/autofill_data_type_controller_unittest.cc
diff --git a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
index 6383c31001a363a082a1560e5b3b8d05a8d3fe83..d34163211ff3d90ca624311b19210a621e25e542 100644
--- a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
+++ b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
@@ -40,7 +40,9 @@ using testing::Return;
// loading.
class FakeWebDataService : public WebDataService {
public:
- FakeWebDataService() : is_database_loaded_(false) {}
+ FakeWebDataService()
+ : WebDataService(WebDataServiceBase::ProfileErrorCallback()),
+ is_database_loaded_(false) {}
// Mark the database as loaded and send out the appropriate
// notification.

Powered by Google App Engine
This is Rietveld 408576698