| Index: chrome/browser/prefs/browser_prefs.cc
|
| diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
|
| index f954807629df35883c88fcefd550948e42e9bc13..4bb4c05d8609136d8a5963d675e741c78b66b2e0 100644
|
| --- a/chrome/browser/prefs/browser_prefs.cc
|
| +++ b/chrome/browser/prefs/browser_prefs.cc
|
| @@ -71,7 +71,6 @@
|
| #include "chrome/browser/translate/translate_prefs.h"
|
| #include "chrome/browser/ui/alternate_error_tab_observer.h"
|
| #include "chrome/browser/ui/app_list/app_list_service.h"
|
| -#include "chrome/browser/ui/autofill/autofill_credit_card_bubble_controller.h"
|
| #include "chrome/browser/ui/autofill/autofill_dialog_controller_impl.h"
|
| #include "chrome/browser/ui/browser_ui_prefs.h"
|
| #include "chrome/browser/ui/network_profile_bubble.h"
|
| @@ -153,6 +152,8 @@
|
|
|
| #if defined(OS_ANDROID)
|
| #include "chrome/browser/ui/webui/ntp/android/promo_handler.h"
|
| +#else
|
| +#include "chrome/browser/ui/autofill/generated_credit_card_bubble_controller.h"
|
| #endif
|
|
|
| #if defined(ENABLE_PLUGIN_INSTALLATION)
|
| @@ -287,9 +288,11 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
|
| // User prefs. Please keep this list alphabetized.
|
| AlternateErrorPageTabObserver::RegisterProfilePrefs(registry);
|
| apps::RegisterProfilePrefs(registry);
|
| - autofill::AutofillCreditCardBubbleController::RegisterUserPrefs(registry);
|
| autofill::AutofillDialogControllerImpl::RegisterProfilePrefs(registry);
|
| autofill::AutofillManager::RegisterProfilePrefs(registry);
|
| +#if !defined(OS_ANDROID)
|
| + autofill::GeneratedCreditCardBubbleController::RegisterUserPrefs(registry);
|
| +#endif
|
| BookmarkPromptPrefs::RegisterProfilePrefs(registry);
|
| bookmark_utils::RegisterProfilePrefs(registry);
|
| browser_sync::SyncPrefs::RegisterProfilePrefs(registry);
|
|
|