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

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

Issue 7541065: autofill: Refactor PersonalDataManager::Observer into its own header file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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.cc
diff --git a/chrome/browser/sync/glue/autofill_data_type_controller.cc b/chrome/browser/sync/glue/autofill_data_type_controller.cc
index ba6a1618420549e75e5c95ee337e204be4a026e9..761f1ec322feaad08a595197a99b7fa44b9843d2 100644
--- a/chrome/browser/sync/glue/autofill_data_type_controller.cc
+++ b/chrome/browser/sync/glue/autofill_data_type_controller.cc
@@ -6,6 +6,7 @@
#include "base/metrics/histogram.h"
#include "base/task.h"
+#include "chrome/browser/autofill/personal_data_manager.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/profile_sync_factory.h"
#include "chrome/browser/sync/profile_sync_service.h"
@@ -20,8 +21,7 @@ namespace browser_sync {
AutofillDataTypeController::AutofillDataTypeController(
ProfileSyncFactory* profile_sync_factory,
Profile* profile)
- : NonFrontendDataTypeController(profile_sync_factory,
- profile),
+ : NonFrontendDataTypeController(profile_sync_factory, profile),
personal_data_(NULL) {
}

Powered by Google App Engine
This is Rietveld 408576698