| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 extern const char kLanguageMozcUseNumberConversion[]; | 157 extern const char kLanguageMozcUseNumberConversion[]; |
| 158 extern const char kLanguageMozcUseHistorySuggest[]; | 158 extern const char kLanguageMozcUseHistorySuggest[]; |
| 159 extern const char kLanguageMozcUseDictionarySuggest[]; | 159 extern const char kLanguageMozcUseDictionarySuggest[]; |
| 160 extern const char kLanguageMozcSuggestionsSize[]; | 160 extern const char kLanguageMozcSuggestionsSize[]; |
| 161 extern const char kLanguageXkbRemapSearchKeyTo[]; | 161 extern const char kLanguageXkbRemapSearchKeyTo[]; |
| 162 extern const char kLanguageXkbRemapControlKeyTo[]; | 162 extern const char kLanguageXkbRemapControlKeyTo[]; |
| 163 extern const char kLanguageXkbRemapAltKeyTo[]; | 163 extern const char kLanguageXkbRemapAltKeyTo[]; |
| 164 extern const char kLanguageXkbAutoRepeatEnabled[]; | 164 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 165 extern const char kLanguageXkbAutoRepeatDelay[]; | 165 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 166 extern const char kLanguageXkbAutoRepeatInterval[]; | 166 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 167 extern const char kLanguagePreferredVirtualKeyboard[]; |
| 167 extern const char kAccessibilityEnabled[]; | 168 extern const char kAccessibilityEnabled[]; |
| 168 extern const char kLabsAdvancedFilesystemEnabled[]; | 169 extern const char kLabsAdvancedFilesystemEnabled[]; |
| 169 extern const char kLabsMediaplayerEnabled[]; | 170 extern const char kLabsMediaplayerEnabled[]; |
| 170 extern const char kEnableScreenLock[]; | 171 extern const char kEnableScreenLock[]; |
| 171 extern const char kShowPlanNotifications[]; | 172 extern const char kShowPlanNotifications[]; |
| 172 extern const char kShow3gPromoNotification[]; | 173 extern const char kShow3gPromoNotification[]; |
| 173 extern const char kLastUsedFileBrowserHandlers[]; | 174 extern const char kLastUsedFileBrowserHandlers[]; |
| 174 extern const char kUseSharedProxies[]; | 175 extern const char kUseSharedProxies[]; |
| 175 #endif | 176 #endif |
| 176 extern const char kIpcDisabledMessages[]; | 177 extern const char kIpcDisabledMessages[]; |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 extern const char kCustomHandlersEnabled[]; | 522 extern const char kCustomHandlersEnabled[]; |
| 522 | 523 |
| 523 extern const char kUserCreatedLoginItem[]; | 524 extern const char kUserCreatedLoginItem[]; |
| 524 extern const char kBackgroundModeEnabled[]; | 525 extern const char kBackgroundModeEnabled[]; |
| 525 | 526 |
| 526 extern const char kDevicePolicyRefreshRate[]; | 527 extern const char kDevicePolicyRefreshRate[]; |
| 527 extern const char kUserPolicyRefreshRate[]; | 528 extern const char kUserPolicyRefreshRate[]; |
| 528 } // namespace prefs | 529 } // namespace prefs |
| 529 | 530 |
| 530 #endif // CHROME_COMMON_PREF_NAMES_H_ | 531 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |