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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 extern const char kPowerUseVideoActivity[]; | 321 extern const char kPowerUseVideoActivity[]; |
322 extern const char kPowerAllowScreenWakeLocks[]; | 322 extern const char kPowerAllowScreenWakeLocks[]; |
323 extern const char kPowerPresentationScreenDimDelayFactor[]; | 323 extern const char kPowerPresentationScreenDimDelayFactor[]; |
324 extern const char kPowerUserActivityScreenDimDelayFactor[]; | 324 extern const char kPowerUserActivityScreenDimDelayFactor[]; |
325 extern const char kTermsOfServiceURL[]; | 325 extern const char kTermsOfServiceURL[]; |
326 extern const char kUsedPolicyCertificatesOnce[]; | 326 extern const char kUsedPolicyCertificatesOnce[]; |
327 extern const char kAttestationEnabled[]; | 327 extern const char kAttestationEnabled[]; |
328 extern const char kAttestationExtensionWhitelist[]; | 328 extern const char kAttestationExtensionWhitelist[]; |
329 extern const char kTouchHudProjectionEnabled[]; | 329 extern const char kTouchHudProjectionEnabled[]; |
330 extern const char kOpenNetworkConfiguration[]; | 330 extern const char kOpenNetworkConfiguration[]; |
| 331 extern const char kRAConsentFirstTime[]; |
| 332 extern const char kRAConsentDomains[]; |
| 333 extern const char kRAConsentAlways[]; |
331 #endif // defined(OS_CHROMEOS) | 334 #endif // defined(OS_CHROMEOS) |
332 extern const char kIpcDisabledMessages[]; | 335 extern const char kIpcDisabledMessages[]; |
333 extern const char kShowHomeButton[]; | 336 extern const char kShowHomeButton[]; |
334 extern const char kRecentlySelectedEncoding[]; | 337 extern const char kRecentlySelectedEncoding[]; |
335 extern const char kDeleteBrowsingHistory[]; | 338 extern const char kDeleteBrowsingHistory[]; |
336 extern const char kDeleteDownloadHistory[]; | 339 extern const char kDeleteDownloadHistory[]; |
337 extern const char kDeleteCache[]; | 340 extern const char kDeleteCache[]; |
338 extern const char kDeleteCookies[]; | 341 extern const char kDeleteCookies[]; |
339 extern const char kDeletePasswords[]; | 342 extern const char kDeletePasswords[]; |
340 extern const char kDeleteFormData[]; | 343 extern const char kDeleteFormData[]; |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
942 extern const char kModuleConflictBubbleShown[]; | 945 extern const char kModuleConflictBubbleShown[]; |
943 | 946 |
944 extern const char kDRMSalt[]; | 947 extern const char kDRMSalt[]; |
945 extern const char kEnableDRM[]; | 948 extern const char kEnableDRM[]; |
946 | 949 |
947 extern const char kWatchdogExtensionActive[]; | 950 extern const char kWatchdogExtensionActive[]; |
948 | 951 |
949 } // namespace prefs | 952 } // namespace prefs |
950 | 953 |
951 #endif // CHROME_COMMON_PREF_NAMES_H_ | 954 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |