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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 | 441 |
442 extern const char kMessageCenterDisabledExtensionIds[]; | 442 extern const char kMessageCenterDisabledExtensionIds[]; |
443 extern const char kMessageCenterDisabledSystemComponentIds[]; | 443 extern const char kMessageCenterDisabledSystemComponentIds[]; |
444 extern const char kMessageCenterEnabledSyncNotifierIds[]; | 444 extern const char kMessageCenterEnabledSyncNotifierIds[]; |
445 | 445 |
446 extern const char kExtensionsPref[]; | 446 extern const char kExtensionsPref[]; |
447 extern const char kExtensionsLastChromeVersion[]; | 447 extern const char kExtensionsLastChromeVersion[]; |
448 | 448 |
449 extern const char kFullscreenAllowed[]; | 449 extern const char kFullscreenAllowed[]; |
450 | 450 |
| 451 extern const char kProfileResetPromptMemento[]; |
| 452 |
451 // Local state prefs. Please add Profile prefs above instead. | 453 // Local state prefs. Please add Profile prefs above instead. |
452 extern const char kCertRevocationCheckingEnabled[]; | 454 extern const char kCertRevocationCheckingEnabled[]; |
453 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 455 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
454 extern const char kSSLVersionMin[]; | 456 extern const char kSSLVersionMin[]; |
455 extern const char kSSLVersionMax[]; | 457 extern const char kSSLVersionMax[]; |
456 extern const char kCipherSuiteBlacklist[]; | 458 extern const char kCipherSuiteBlacklist[]; |
457 extern const char kEnableOriginBoundCerts[]; | 459 extern const char kEnableOriginBoundCerts[]; |
458 extern const char kDisableSSLRecordSplitting[]; | 460 extern const char kDisableSSLRecordSplitting[]; |
459 extern const char kEnableUnrestrictedSSL3Fallback[]; | 461 extern const char kEnableUnrestrictedSSL3Fallback[]; |
460 extern const char kEnableMemoryInfo[]; | 462 extern const char kEnableMemoryInfo[]; |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
940 extern const char kModuleConflictBubbleShown[]; | 942 extern const char kModuleConflictBubbleShown[]; |
941 | 943 |
942 extern const char kDRMSalt[]; | 944 extern const char kDRMSalt[]; |
943 extern const char kEnableDRM[]; | 945 extern const char kEnableDRM[]; |
944 | 946 |
945 extern const char kWatchdogExtensionActive[]; | 947 extern const char kWatchdogExtensionActive[]; |
946 | 948 |
947 } // namespace prefs | 949 } // namespace prefs |
948 | 950 |
949 #endif // CHROME_COMMON_PREF_NAMES_H_ | 951 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |