| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 extern const char kLanguageCurrentInputMethod[]; | 209 extern const char kLanguageCurrentInputMethod[]; |
| 210 extern const char kLanguagePreviousInputMethod[]; | 210 extern const char kLanguagePreviousInputMethod[]; |
| 211 extern const char kLanguagePreferredLanguages[]; | 211 extern const char kLanguagePreferredLanguages[]; |
| 212 extern const char kLanguagePreferredLanguagesSyncable[]; | 212 extern const char kLanguagePreferredLanguagesSyncable[]; |
| 213 extern const char kLanguagePreloadEngines[]; | 213 extern const char kLanguagePreloadEngines[]; |
| 214 extern const char kLanguagePreloadEnginesSyncable[]; | 214 extern const char kLanguagePreloadEnginesSyncable[]; |
| 215 extern const char kLanguageEnabledExtensionImes[]; | 215 extern const char kLanguageEnabledExtensionImes[]; |
| 216 extern const char kLanguageEnabledExtensionImesSyncable[]; | 216 extern const char kLanguageEnabledExtensionImesSyncable[]; |
| 217 extern const char kLanguageImeMenuActivated[]; | 217 extern const char kLanguageImeMenuActivated[]; |
| 218 extern const char kLanguageShouldMergeInputMethods[]; | 218 extern const char kLanguageShouldMergeInputMethods[]; |
| 219 extern const char kLanguageRemapCapsLockKeyTo[]; | |
| 220 extern const char kLanguageRemapSearchKeyTo[]; | |
| 221 extern const char kLanguageRemapControlKeyTo[]; | |
| 222 extern const char kLanguageRemapAltKeyTo[]; | |
| 223 extern const char kLanguageRemapEscapeKeyTo[]; | |
| 224 extern const char kLanguageRemapBackspaceKeyTo[]; | |
| 225 extern const char kLanguageRemapDiamondKeyTo[]; | |
| 226 extern const char kLanguageSendFunctionKeys[]; | 219 extern const char kLanguageSendFunctionKeys[]; |
| 227 extern const char kLanguageXkbAutoRepeatEnabled[]; | 220 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 228 extern const char kLanguageXkbAutoRepeatDelay[]; | 221 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 229 extern const char kLanguageXkbAutoRepeatInterval[]; | 222 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 230 | 223 |
| 231 // TODO(dmazzoni): move accessibility prefs out of chrome/. | 224 // TODO(dmazzoni): move accessibility prefs out of chrome/. |
| 232 // http://crbug.com/594887 | 225 // http://crbug.com/594887 |
| 233 extern const char kAccessibilityLargeCursorEnabled[]; | 226 extern const char kAccessibilityLargeCursorEnabled[]; |
| 234 extern const char kAccessibilityLargeCursorDipSize[]; | 227 extern const char kAccessibilityLargeCursorDipSize[]; |
| 235 extern const char kAccessibilityStickyKeysEnabled[]; | 228 extern const char kAccessibilityStickyKeysEnabled[]; |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 899 extern const char kBookmarksBubbleIOSPromoDismissed[]; | 892 extern const char kBookmarksBubbleIOSPromoDismissed[]; |
| 900 extern const char kNumberBookmarksFootNoteIOSPromoShown[]; | 893 extern const char kNumberBookmarksFootNoteIOSPromoShown[]; |
| 901 extern const char kBookmarksFootNoteIOSPromoDismissed[]; | 894 extern const char kBookmarksFootNoteIOSPromoDismissed[]; |
| 902 extern const char kNumberHistoryPageIOSPromoShown[]; | 895 extern const char kNumberHistoryPageIOSPromoShown[]; |
| 903 extern const char kHistoryPageIOSPromoDismissed[]; | 896 extern const char kHistoryPageIOSPromoDismissed[]; |
| 904 #endif | 897 #endif |
| 905 | 898 |
| 906 } // namespace prefs | 899 } // namespace prefs |
| 907 | 900 |
| 908 #endif // CHROME_COMMON_PREF_NAMES_H_ | 901 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |