| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 extern const char kHideWebStoreIcon[]; | 202 extern const char kHideWebStoreIcon[]; |
| 203 #if defined(OS_CHROMEOS) | 203 #if defined(OS_CHROMEOS) |
| 204 extern const char kTapToClickEnabled[]; | 204 extern const char kTapToClickEnabled[]; |
| 205 extern const char kTapDraggingEnabled[]; | 205 extern const char kTapDraggingEnabled[]; |
| 206 extern const char kEnableTouchpadThreeFingerClick[]; | 206 extern const char kEnableTouchpadThreeFingerClick[]; |
| 207 extern const char kNaturalScroll[]; | 207 extern const char kNaturalScroll[]; |
| 208 extern const char kPrimaryMouseButtonRight[]; | 208 extern const char kPrimaryMouseButtonRight[]; |
| 209 extern const char kMouseSensitivity[]; | 209 extern const char kMouseSensitivity[]; |
| 210 extern const char kTouchpadSensitivity[]; | 210 extern const char kTouchpadSensitivity[]; |
| 211 extern const char kUse24HourClock[]; | 211 extern const char kUse24HourClock[]; |
| 212 extern const char kUserTimezone[]; |
| 212 extern const char kResolveTimezoneByGeolocation[]; | 213 extern const char kResolveTimezoneByGeolocation[]; |
| 213 // TODO(yusukes): Change "kLanguageABC" to "kABC". The current form is too long | 214 // TODO(yusukes): Change "kLanguageABC" to "kABC". The current form is too long |
| 214 // to remember and confusing. The prefs are actually for input methods and i18n | 215 // to remember and confusing. The prefs are actually for input methods and i18n |
| 215 // keyboards, not UI languages. | 216 // keyboards, not UI languages. |
| 216 extern const char kLanguageCurrentInputMethod[]; | 217 extern const char kLanguageCurrentInputMethod[]; |
| 217 extern const char kLanguagePreviousInputMethod[]; | 218 extern const char kLanguagePreviousInputMethod[]; |
| 218 extern const char kLanguagePreferredLanguages[]; | 219 extern const char kLanguagePreferredLanguages[]; |
| 219 extern const char kLanguagePreferredLanguagesSyncable[]; | 220 extern const char kLanguagePreferredLanguagesSyncable[]; |
| 220 extern const char kLanguagePreloadEngines[]; | 221 extern const char kLanguagePreloadEngines[]; |
| 221 extern const char kLanguagePreloadEnginesSyncable[]; | 222 extern const char kLanguagePreloadEnginesSyncable[]; |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 extern const char kBackgroundModeEnabled[]; | 750 extern const char kBackgroundModeEnabled[]; |
| 750 extern const char kHardwareAccelerationModeEnabled[]; | 751 extern const char kHardwareAccelerationModeEnabled[]; |
| 751 extern const char kHardwareAccelerationModePrevious[]; | 752 extern const char kHardwareAccelerationModePrevious[]; |
| 752 | 753 |
| 753 extern const char kDevicePolicyRefreshRate[]; | 754 extern const char kDevicePolicyRefreshRate[]; |
| 754 | 755 |
| 755 extern const char kFactoryResetRequested[]; | 756 extern const char kFactoryResetRequested[]; |
| 756 extern const char kDebuggingFeaturesRequested[]; | 757 extern const char kDebuggingFeaturesRequested[]; |
| 757 | 758 |
| 758 #if defined(OS_CHROMEOS) | 759 #if defined(OS_CHROMEOS) |
| 760 extern const char kSigninScreenTimezone[]; |
| 759 extern const char kResolveDeviceTimezoneByGeolocation[]; | 761 extern const char kResolveDeviceTimezoneByGeolocation[]; |
| 760 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; | 762 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; |
| 761 #endif // defined(OS_CHROMEOS) | 763 #endif // defined(OS_CHROMEOS) |
| 762 | 764 |
| 763 extern const char kEnableMediaRouter[]; | 765 extern const char kEnableMediaRouter[]; |
| 764 #if !defined(OS_ANDROID) | 766 #if !defined(OS_ANDROID) |
| 765 extern const char kShowCastIconInToolbar[]; | 767 extern const char kShowCastIconInToolbar[]; |
| 766 #endif // !defined(OS_ANDROID) | 768 #endif // !defined(OS_ANDROID) |
| 767 | 769 |
| 768 #if !defined(OS_ANDROID) | 770 #if !defined(OS_ANDROID) |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 extern const char kOfflineUsageUnusedCount[]; | 941 extern const char kOfflineUsageUnusedCount[]; |
| 940 extern const char kOfflineUsageStartedCount[]; | 942 extern const char kOfflineUsageStartedCount[]; |
| 941 extern const char kOfflineUsageOfflineCount[]; | 943 extern const char kOfflineUsageOfflineCount[]; |
| 942 extern const char kOfflineUsageOnlineCount[]; | 944 extern const char kOfflineUsageOnlineCount[]; |
| 943 extern const char kOfflineUsageMixedCount[]; | 945 extern const char kOfflineUsageMixedCount[]; |
| 944 #endif | 946 #endif |
| 945 | 947 |
| 946 } // namespace prefs | 948 } // namespace prefs |
| 947 | 949 |
| 948 #endif // CHROME_COMMON_PREF_NAMES_H_ | 950 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |