| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 extern const char kManagedUserCreationAllowed[]; | 439 extern const char kManagedUserCreationAllowed[]; |
| 440 extern const char kManagedUsers[]; | 440 extern const char kManagedUsers[]; |
| 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[]; |
| 450 |
| 449 // Local state prefs. Please add Profile prefs above instead. | 451 // Local state prefs. Please add Profile prefs above instead. |
| 450 extern const char kCertRevocationCheckingEnabled[]; | 452 extern const char kCertRevocationCheckingEnabled[]; |
| 451 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 453 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
| 452 extern const char kSSLVersionMin[]; | 454 extern const char kSSLVersionMin[]; |
| 453 extern const char kSSLVersionMax[]; | 455 extern const char kSSLVersionMax[]; |
| 454 extern const char kCipherSuiteBlacklist[]; | 456 extern const char kCipherSuiteBlacklist[]; |
| 455 extern const char kEnableOriginBoundCerts[]; | 457 extern const char kEnableOriginBoundCerts[]; |
| 456 extern const char kDisableSSLRecordSplitting[]; | 458 extern const char kDisableSSLRecordSplitting[]; |
| 457 extern const char kEnableUnrestrictedSSL3Fallback[]; | 459 extern const char kEnableUnrestrictedSSL3Fallback[]; |
| 458 extern const char kEnableMemoryInfo[]; | 460 extern const char kEnableMemoryInfo[]; |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 extern const char kModuleConflictBubbleShown[]; | 938 extern const char kModuleConflictBubbleShown[]; |
| 937 | 939 |
| 938 extern const char kDRMSalt[]; | 940 extern const char kDRMSalt[]; |
| 939 extern const char kEnableDRM[]; | 941 extern const char kEnableDRM[]; |
| 940 | 942 |
| 941 extern const char kWatchdogExtensionActive[]; | 943 extern const char kWatchdogExtensionActive[]; |
| 942 | 944 |
| 943 } // namespace prefs | 945 } // namespace prefs |
| 944 | 946 |
| 945 #endif // CHROME_COMMON_PREF_NAMES_H_ | 947 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |