diff options
-rw-r--r-- | chrome/browser/autofill/autofill_manager.cc | 5 | ||||
-rw-r--r-- | chrome/browser/autofill/autofill_manager.h | 3 | ||||
-rw-r--r-- | chrome/browser/prefs/browser_prefs.cc | 1 | ||||
-rw-r--r-- | chrome/common/pref_names.cc | 3 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
5 files changed, 0 insertions, 13 deletions
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc index ce8e9df..8a7174e 100644 --- a/chrome/browser/autofill/autofill_manager.cc +++ b/chrome/browser/autofill/autofill_manager.cc @@ -247,11 +247,6 @@ AutofillManager::~AutofillManager() { } // static -void AutofillManager::RegisterBrowserPrefs(PrefService* prefs) { - prefs->RegisterDictionaryPref(prefs::kAutofillDialogPlacement); -} - -// static void AutofillManager::RegisterUserPrefs(PrefService* prefs) { prefs->RegisterBooleanPref(prefs::kAutofillEnabled, true, diff --git a/chrome/browser/autofill/autofill_manager.h b/chrome/browser/autofill/autofill_manager.h index 79dab88..986c801 100644 --- a/chrome/browser/autofill/autofill_manager.h +++ b/chrome/browser/autofill/autofill_manager.h @@ -51,9 +51,6 @@ class AutofillManager : public TabContentsObserver, explicit AutofillManager(TabContentsWrapper* tab_contents); virtual ~AutofillManager(); - // Registers our browser prefs. - static void RegisterBrowserPrefs(PrefService* prefs); - // Registers our Enable/Disable Autofill pref. static void RegisterUserPrefs(PrefService* prefs); diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc index b64f8f5..635c276 100644 --- a/chrome/browser/prefs/browser_prefs.cc +++ b/chrome/browser/prefs/browser_prefs.cc @@ -116,7 +116,6 @@ void RegisterLocalState(PrefService* local_state) { UpgradeDetector::RegisterPrefs(local_state); TaskManager::RegisterPrefs(local_state); geolocation::RegisterPrefs(local_state); - AutofillManager::RegisterBrowserPrefs(local_state); BackgroundModeManager::RegisterPrefs(local_state); NotificationUIManager::RegisterPrefs(local_state); PrefProxyConfigService::RegisterPrefs(local_state); diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index e17e841..a1dde85 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -756,9 +756,6 @@ const char kAutofillEnabled[] = "autofill.enabled"; const char kAutofillAuxiliaryProfilesEnabled[] = "autofill.auxiliary_profiles_enabled"; -// Position and size of the Autofill dialog. -const char kAutofillDialogPlacement[] = "autofill.dialog_placement"; - // Double that indicates positive (for matched forms) upload rate. const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index e8d347c..dba5a37 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -273,7 +273,6 @@ extern const char kDefaultZoomLevel[]; extern const char kPerHostZoomLevels[]; extern const char kAutofillEnabled[]; extern const char kAutofillAuxiliaryProfilesEnabled[]; -extern const char kAutofillDialogPlacement[]; extern const char kAutofillPositiveUploadRate[]; extern const char kAutofillNegativeUploadRate[]; extern const char kAutofillPersonalDataManagerFirstRun[]; |