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

Unified Diff: chrome/browser/prefs/browser_prefs.cc

Issue 301343002: mac: Clean up autofill integration with Address Book. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@autofill_cleanup2_base
Patch Set: Move comment. Remove DCHECKs. Created 6 years, 6 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/prefs/browser_prefs.cc
diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
index 28450218b8a5cedf12bd597648d6183593291486..8a50272bc7fe9285cabd0f5f6edd3a939f699fe2 100644
--- a/chrome/browser/prefs/browser_prefs.cc
+++ b/chrome/browser/prefs/browser_prefs.cc
@@ -514,6 +514,10 @@ void MigrateUserPrefs(Profile* profile) {
#if defined(ENABLE_MANAGED_USERS)
ManagedUserService::MigrateUserPrefs(prefs);
#endif
+
+#if defined(OS_MACOSX) && !defined(OS_IOS)
+ autofill::AutofillManager::MigrateUserPrefs(prefs);
+#endif // defined(OS_MACOSX) && !defined(OS_IOS)
}
void MigrateBrowserPrefs(Profile* profile, PrefService* local_state) {

Powered by Google App Engine
This is Rietveld 408576698