| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 extern const char kLanguageMozcUseNumberConversion[]; | 159 extern const char kLanguageMozcUseNumberConversion[]; |
| 160 extern const char kLanguageMozcUseHistorySuggest[]; | 160 extern const char kLanguageMozcUseHistorySuggest[]; |
| 161 extern const char kLanguageMozcUseDictionarySuggest[]; | 161 extern const char kLanguageMozcUseDictionarySuggest[]; |
| 162 extern const char kLanguageMozcSuggestionsSize[]; | 162 extern const char kLanguageMozcSuggestionsSize[]; |
| 163 extern const char kLanguageXkbRemapSearchKeyTo[]; | 163 extern const char kLanguageXkbRemapSearchKeyTo[]; |
| 164 extern const char kLanguageXkbRemapControlKeyTo[]; | 164 extern const char kLanguageXkbRemapControlKeyTo[]; |
| 165 extern const char kLanguageXkbRemapAltKeyTo[]; | 165 extern const char kLanguageXkbRemapAltKeyTo[]; |
| 166 extern const char kLanguageXkbAutoRepeatEnabled[]; | 166 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 167 extern const char kLanguageXkbAutoRepeatDelay[]; | 167 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 168 extern const char kLanguageXkbAutoRepeatInterval[]; | 168 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 169 extern const char kLanguagePreferredVirtualKeyboard[]; |
| 169 extern const char kAccessibilityEnabled[]; | 170 extern const char kAccessibilityEnabled[]; |
| 170 extern const char kLabsAdvancedFilesystemEnabled[]; | 171 extern const char kLabsAdvancedFilesystemEnabled[]; |
| 171 extern const char kLabsMediaplayerEnabled[]; | 172 extern const char kLabsMediaplayerEnabled[]; |
| 172 extern const char kEnableScreenLock[]; | 173 extern const char kEnableScreenLock[]; |
| 173 extern const char kShowPlanNotifications[]; | 174 extern const char kShowPlanNotifications[]; |
| 174 extern const char kShow3gPromoNotification[]; | 175 extern const char kShow3gPromoNotification[]; |
| 175 extern const char kLastUsedFileBrowserHandlers[]; | 176 extern const char kLastUsedFileBrowserHandlers[]; |
| 176 extern const char kUseSharedProxies[]; | 177 extern const char kUseSharedProxies[]; |
| 177 extern const char kOAuth1Token[]; | 178 extern const char kOAuth1Token[]; |
| 178 extern const char kOAuth1Secret[]; | 179 extern const char kOAuth1Secret[]; |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 extern const char kCustomHandlersEnabled[]; | 530 extern const char kCustomHandlersEnabled[]; |
| 530 | 531 |
| 531 extern const char kUserCreatedLoginItem[]; | 532 extern const char kUserCreatedLoginItem[]; |
| 532 extern const char kBackgroundModeEnabled[]; | 533 extern const char kBackgroundModeEnabled[]; |
| 533 | 534 |
| 534 extern const char kDevicePolicyRefreshRate[]; | 535 extern const char kDevicePolicyRefreshRate[]; |
| 535 extern const char kUserPolicyRefreshRate[]; | 536 extern const char kUserPolicyRefreshRate[]; |
| 536 } // namespace prefs | 537 } // namespace prefs |
| 537 | 538 |
| 538 #endif // CHROME_COMMON_PREF_NAMES_H_ | 539 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |