| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 extern const char kLanguageXkbRemapSearchKeyTo[]; | 259 extern const char kLanguageXkbRemapSearchKeyTo[]; |
| 260 extern const char kLanguageXkbRemapControlKeyTo[]; | 260 extern const char kLanguageXkbRemapControlKeyTo[]; |
| 261 extern const char kLanguageXkbRemapAltKeyTo[]; | 261 extern const char kLanguageXkbRemapAltKeyTo[]; |
| 262 extern const char kLanguageXkbAutoRepeatEnabled[]; | 262 extern const char kLanguageXkbAutoRepeatEnabled[]; |
| 263 extern const char kLanguageXkbAutoRepeatDelay[]; | 263 extern const char kLanguageXkbAutoRepeatDelay[]; |
| 264 extern const char kLanguageXkbAutoRepeatInterval[]; | 264 extern const char kLanguageXkbAutoRepeatInterval[]; |
| 265 extern const char kSpokenFeedbackEnabled[]; | 265 extern const char kSpokenFeedbackEnabled[]; |
| 266 extern const char kHighContrastEnabled[]; | 266 extern const char kHighContrastEnabled[]; |
| 267 extern const char kScreenMagnifierEnabled[]; | 267 extern const char kScreenMagnifierEnabled[]; |
| 268 extern const char kScreenMagnifierScale[]; | 268 extern const char kScreenMagnifierScale[]; |
| 269 extern const char kPartialScreenMagnifierEnabled[]; |
| 269 extern const char kVirtualKeyboardEnabled[]; | 270 extern const char kVirtualKeyboardEnabled[]; |
| 270 extern const char kLabsAdvancedFilesystemEnabled[]; | 271 extern const char kLabsAdvancedFilesystemEnabled[]; |
| 271 extern const char kLabsMediaplayerEnabled[]; | 272 extern const char kLabsMediaplayerEnabled[]; |
| 272 extern const char kEnableScreenLock[]; | 273 extern const char kEnableScreenLock[]; |
| 273 extern const char kShowPlanNotifications[]; | 274 extern const char kShowPlanNotifications[]; |
| 274 extern const char kShow3gPromoNotification[]; | 275 extern const char kShow3gPromoNotification[]; |
| 275 extern const char kChromeOSReleaseNotesVersion[]; | 276 extern const char kChromeOSReleaseNotesVersion[]; |
| 276 extern const char kUseSharedProxies[]; | 277 extern const char kUseSharedProxies[]; |
| 277 extern const char kOAuth1Token[]; | 278 extern const char kOAuth1Token[]; |
| 278 extern const char kOAuth1Secret[]; | 279 extern const char kOAuth1Secret[]; |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 extern const char kInManagedMode[]; | 773 extern const char kInManagedMode[]; |
| 773 | 774 |
| 774 extern const char kNetworkProfileWarningsLeft[]; | 775 extern const char kNetworkProfileWarningsLeft[]; |
| 775 extern const char kNetworkProfileLastWarningTime[]; | 776 extern const char kNetworkProfileLastWarningTime[]; |
| 776 | 777 |
| 777 extern const char kLastPolicyStatisticsUpdate[]; | 778 extern const char kLastPolicyStatisticsUpdate[]; |
| 778 | 779 |
| 779 } // namespace prefs | 780 } // namespace prefs |
| 780 | 781 |
| 781 #endif // CHROME_COMMON_PREF_NAMES_H_ | 782 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |