| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Defines a list of the preferences that the | 5 // Defines a list of the preferences that the |
| 6 // PreferencesChangeProcessor should process changes for. | 6 // PreferencesChangeProcessor should process changes for. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| 9 #define CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 9 #define CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 prefs::kHomePageIsNewTabPage, | 21 prefs::kHomePageIsNewTabPage, |
| 22 prefs::kHomePage, | 22 prefs::kHomePage, |
| 23 prefs::kShowHomeButton, | 23 prefs::kShowHomeButton, |
| 24 prefs::kShowPageOptionsButtons, | 24 prefs::kShowPageOptionsButtons, |
| 25 // Default Search is not synced, needs a new data type. See | 25 // Default Search is not synced, needs a new data type. See |
| 26 // http://crbug.com/40482 | 26 // http://crbug.com/40482 |
| 27 | 27 |
| 28 // Options dialog: Personal Stuff tab. | 28 // Options dialog: Personal Stuff tab. |
| 29 prefs::kPasswordManagerEnabled, | 29 prefs::kPasswordManagerEnabled, |
| 30 prefs::kAutoFillEnabled, | 30 prefs::kAutoFillEnabled, |
| 31 prefs::kAutoFillInfoBarShown, | |
| 32 prefs::kUseCustomChromeFrame, | 31 prefs::kUseCustomChromeFrame, |
| 33 | 32 |
| 34 // Options dialog: Under the hood -> Content Settings -> Cookies. | 33 // Options dialog: Under the hood -> Content Settings -> Cookies. |
| 35 // Cookie settings and exceptions not working | 34 // Cookie settings and exceptions not working |
| 36 prefs::kBlockThirdPartyCookies, | 35 prefs::kBlockThirdPartyCookies, |
| 37 prefs::kClearSiteDataOnExit, | 36 prefs::kClearSiteDataOnExit, |
| 38 | 37 |
| 39 // Options dialog: Under the hood -> Content Settings -> | 38 // Options dialog: Under the hood -> Content Settings -> |
| 40 // Images, JavaScript, Plug-ins, Pop-ups. | 39 // Images, JavaScript, Plug-ins, Pop-ups. |
| 41 prefs::kDefaultContentSettings, | 40 prefs::kDefaultContentSettings, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 // prefs::kLanguagePinyinDoublePinyinSchema, | 140 // prefs::kLanguagePinyinDoublePinyinSchema, |
| 142 // prefs::kLanguagePinyinLookupTablePageSize, | 141 // prefs::kLanguagePinyinLookupTablePageSize, |
| 143 // | 142 // |
| 144 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. | 143 // We don't sync prefs::kLanguageCurrentInputMethod and PreviousInputMethod. |
| 145 #endif | 144 #endif |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace browser_sync | 147 } // namespace browser_sync |
| 149 | 148 |
| 150 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ | 149 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCHRONIZED_PREFERENCES_H_ |
| OLD | NEW |