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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 extern const char kLabsMediaplayerEnabled[]; | 236 extern const char kLabsMediaplayerEnabled[]; |
237 extern const char kEnableAutoScreenLock[]; | 237 extern const char kEnableAutoScreenLock[]; |
238 extern const char kShow3gPromoNotification[]; | 238 extern const char kShow3gPromoNotification[]; |
239 extern const char kDataSaverPromptsShown[]; | 239 extern const char kDataSaverPromptsShown[]; |
240 extern const char kChromeOSReleaseNotesVersion[]; | 240 extern const char kChromeOSReleaseNotesVersion[]; |
241 extern const char kUseSharedProxies[]; | 241 extern const char kUseSharedProxies[]; |
242 extern const char kDisplayPowerState[]; | 242 extern const char kDisplayPowerState[]; |
243 extern const char kDisplayProperties[]; | 243 extern const char kDisplayProperties[]; |
244 extern const char kSecondaryDisplays[]; | 244 extern const char kSecondaryDisplays[]; |
245 extern const char kDisplayRotationLock[]; | 245 extern const char kDisplayRotationLock[]; |
| 246 extern const char kEnableAshPalette[]; |
246 extern const char kLaunchNoteAppOnEjectEvent[]; | 247 extern const char kLaunchNoteAppOnEjectEvent[]; |
247 extern const char kSessionUserActivitySeen[]; | 248 extern const char kSessionUserActivitySeen[]; |
248 extern const char kSessionStartTime[]; | 249 extern const char kSessionStartTime[]; |
249 extern const char kSessionLengthLimit[]; | 250 extern const char kSessionLengthLimit[]; |
250 extern const char kSessionWaitForInitialUserActivity[]; | 251 extern const char kSessionWaitForInitialUserActivity[]; |
251 extern const char kPowerAcScreenDimDelayMs[]; | 252 extern const char kPowerAcScreenDimDelayMs[]; |
252 extern const char kPowerAcScreenOffDelayMs[]; | 253 extern const char kPowerAcScreenOffDelayMs[]; |
253 extern const char kPowerAcScreenLockDelayMs[]; | 254 extern const char kPowerAcScreenLockDelayMs[]; |
254 extern const char kPowerAcIdleWarningDelayMs[]; | 255 extern const char kPowerAcIdleWarningDelayMs[]; |
255 extern const char kPowerAcIdleDelayMs[]; | 256 extern const char kPowerAcIdleDelayMs[]; |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 829 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
829 extern const char kMediaRouterAlwaysShowActionIcon[]; | 830 extern const char kMediaRouterAlwaysShowActionIcon[]; |
830 #endif | 831 #endif |
831 | 832 |
832 extern const char kOriginTrialPublicKey[]; | 833 extern const char kOriginTrialPublicKey[]; |
833 extern const char kOriginTrialDisabledFeatures[]; | 834 extern const char kOriginTrialDisabledFeatures[]; |
834 | 835 |
835 } // namespace prefs | 836 } // namespace prefs |
836 | 837 |
837 #endif // CHROME_COMMON_PREF_NAMES_H_ | 838 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |