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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 extern const char kLabsMediaplayerEnabled[]; | 219 extern const char kLabsMediaplayerEnabled[]; |
220 extern const char kEnableAutoScreenLock[]; | 220 extern const char kEnableAutoScreenLock[]; |
221 extern const char kShow3gPromoNotification[]; | 221 extern const char kShow3gPromoNotification[]; |
222 extern const char kDataSaverPromptsShown[]; | 222 extern const char kDataSaverPromptsShown[]; |
223 extern const char kChromeOSReleaseNotesVersion[]; | 223 extern const char kChromeOSReleaseNotesVersion[]; |
224 extern const char kUseSharedProxies[]; | 224 extern const char kUseSharedProxies[]; |
225 extern const char kDisplayPowerState[]; | 225 extern const char kDisplayPowerState[]; |
226 extern const char kDisplayProperties[]; | 226 extern const char kDisplayProperties[]; |
227 extern const char kSecondaryDisplays[]; | 227 extern const char kSecondaryDisplays[]; |
228 extern const char kDisplayRotationLock[]; | 228 extern const char kDisplayRotationLock[]; |
| 229 extern const char kQuirksClientEnabled[]; |
229 extern const char kSessionUserActivitySeen[]; | 230 extern const char kSessionUserActivitySeen[]; |
230 extern const char kSessionStartTime[]; | 231 extern const char kSessionStartTime[]; |
231 extern const char kSessionLengthLimit[]; | 232 extern const char kSessionLengthLimit[]; |
232 extern const char kSessionWaitForInitialUserActivity[]; | 233 extern const char kSessionWaitForInitialUserActivity[]; |
233 extern const char kPowerAcScreenDimDelayMs[]; | 234 extern const char kPowerAcScreenDimDelayMs[]; |
234 extern const char kPowerAcScreenOffDelayMs[]; | 235 extern const char kPowerAcScreenOffDelayMs[]; |
235 extern const char kPowerAcScreenLockDelayMs[]; | 236 extern const char kPowerAcScreenLockDelayMs[]; |
236 extern const char kPowerAcIdleWarningDelayMs[]; | 237 extern const char kPowerAcIdleWarningDelayMs[]; |
237 extern const char kPowerAcIdleDelayMs[]; | 238 extern const char kPowerAcIdleDelayMs[]; |
238 extern const char kPowerBatteryScreenDimDelayMs[]; | 239 extern const char kPowerBatteryScreenDimDelayMs[]; |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 #if defined(GOOGLE_CHROME_BUILD) | 802 #if defined(GOOGLE_CHROME_BUILD) |
802 extern const char kMediaRouterCloudServicesPrefSet[]; | 803 extern const char kMediaRouterCloudServicesPrefSet[]; |
803 extern const char kMediaRouterEnableCloudServices[]; | 804 extern const char kMediaRouterEnableCloudServices[]; |
804 #endif // defined(GOOGLE_CHROME_BUILD) | 805 #endif // defined(GOOGLE_CHROME_BUILD) |
805 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 806 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
806 #endif | 807 #endif |
807 | 808 |
808 } // namespace prefs | 809 } // namespace prefs |
809 | 810 |
810 #endif // CHROME_COMMON_PREF_NAMES_H_ | 811 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |