| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 extern const char kLanguageMozcSessionKeymap[]; | 181 extern const char kLanguageMozcSessionKeymap[]; |
| 182 extern const char kLanguageMozcPunctuationMethod[]; | 182 extern const char kLanguageMozcPunctuationMethod[]; |
| 183 extern const char kLanguageMozcSymbolMethod[]; | 183 extern const char kLanguageMozcSymbolMethod[]; |
| 184 extern const char kLanguageMozcSpaceCharacterForm[]; | 184 extern const char kLanguageMozcSpaceCharacterForm[]; |
| 185 extern const char kLanguageMozcHistoryLearningLevel[]; | 185 extern const char kLanguageMozcHistoryLearningLevel[]; |
| 186 extern const char kLanguageMozcSelectionShortcut[]; | 186 extern const char kLanguageMozcSelectionShortcut[]; |
| 187 extern const char kLanguageMozcShiftKeyModeSwitch[]; | 187 extern const char kLanguageMozcShiftKeyModeSwitch[]; |
| 188 extern const char kLanguageMozcNumpadCharacterForm[]; | 188 extern const char kLanguageMozcNumpadCharacterForm[]; |
| 189 extern const char kLanguageMozcIncognitoMode[]; | 189 extern const char kLanguageMozcIncognitoMode[]; |
| 190 extern const char kLanguageMozcUseAutoImeTurnOff[]; | 190 extern const char kLanguageMozcUseAutoImeTurnOff[]; |
| 191 extern const char kLanguageMozcUseDateConversion[]; | |
| 192 extern const char kLanguageMozcUseSingleKanjiConversion[]; | |
| 193 extern const char kLanguageMozcUseSymbolConversion[]; | |
| 194 extern const char kLanguageMozcUseNumberConversion[]; | |
| 195 extern const char kLanguageMozcUseHistorySuggest[]; | 191 extern const char kLanguageMozcUseHistorySuggest[]; |
| 196 extern const char kLanguageMozcUseDictionarySuggest[]; | 192 extern const char kLanguageMozcUseDictionarySuggest[]; |
| 197 extern const char kLanguageMozcSuggestionsSize[]; | 193 extern const char kLanguageMozcSuggestionsSize[]; |
| 198 extern const char kLanguageXkbRemapSearchKeyTo[]; | 194 extern const char kLanguageXkbRemapSearchKeyTo[]; |
| 199 extern const char kLanguageXkbRemapControlKeyTo[]; | 195 extern const char kLanguageXkbRemapControlKeyTo[]; |
| 200 extern const char kLanguageXkbRemapAltKeyTo[]; | 196 extern const char kLanguageXkbRemapAltKeyTo[]; |
| 201 extern const char kLanguageXkbAutoRepeatEnabled[]; | 197 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 202 extern const char kLanguageXkbAutoRepeatDelay[]; | 198 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 203 extern const char kLanguageXkbAutoRepeatInterval[]; | 199 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 204 extern const char kLanguagePreferredVirtualKeyboard[]; | 200 extern const char kLanguagePreferredVirtualKeyboard[]; |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 | 581 |
| 586 extern const char kUserCreatedLoginItem[]; | 582 extern const char kUserCreatedLoginItem[]; |
| 587 extern const char kBackgroundModeEnabled[]; | 583 extern const char kBackgroundModeEnabled[]; |
| 588 | 584 |
| 589 extern const char kDevicePolicyRefreshRate[]; | 585 extern const char kDevicePolicyRefreshRate[]; |
| 590 extern const char kUserPolicyRefreshRate[]; | 586 extern const char kUserPolicyRefreshRate[]; |
| 591 | 587 |
| 592 } // namespace prefs | 588 } // namespace prefs |
| 593 | 589 |
| 594 #endif // CHROME_COMMON_PREF_NAMES_H_ | 590 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |