| 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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 extern const char kPrintPreviewDisabled[]; | 434 extern const char kPrintPreviewDisabled[]; |
| 435 | 435 |
| 436 extern const char kDefaultManagedModeFilteringBehavior[]; | 436 extern const char kDefaultManagedModeFilteringBehavior[]; |
| 437 | 437 |
| 438 extern const char kManagedUserCreationAllowed[]; | 438 extern const char kManagedUserCreationAllowed[]; |
| 439 extern const char kManagedUsers[]; | 439 extern const char kManagedUsers[]; |
| 440 | 440 |
| 441 extern const char kMessageCenterDisabledExtensionIds[]; | 441 extern const char kMessageCenterDisabledExtensionIds[]; |
| 442 extern const char kMessageCenterDisabledSystemComponentIds[]; | 442 extern const char kMessageCenterDisabledSystemComponentIds[]; |
| 443 extern const char kMessageCenterEnabledSyncNotifierIds[]; | 443 extern const char kMessageCenterEnabledSyncNotifierIds[]; |
| 444 extern const char kAllowFullscreen[]; |
| 444 | 445 |
| 445 // Local state prefs. Please add Profile prefs above instead. | 446 // Local state prefs. Please add Profile prefs above instead. |
| 446 extern const char kCertRevocationCheckingEnabled[]; | 447 extern const char kCertRevocationCheckingEnabled[]; |
| 447 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 448 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
| 448 extern const char kSSLVersionMin[]; | 449 extern const char kSSLVersionMin[]; |
| 449 extern const char kSSLVersionMax[]; | 450 extern const char kSSLVersionMax[]; |
| 450 extern const char kCipherSuiteBlacklist[]; | 451 extern const char kCipherSuiteBlacklist[]; |
| 451 extern const char kEnableOriginBoundCerts[]; | 452 extern const char kEnableOriginBoundCerts[]; |
| 452 extern const char kDisableSSLRecordSplitting[]; | 453 extern const char kDisableSSLRecordSplitting[]; |
| 453 extern const char kEnableUnrestrictedSSL3Fallback[]; | 454 extern const char kEnableUnrestrictedSSL3Fallback[]; |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 extern const char kModuleConflictBubbleShown[]; | 933 extern const char kModuleConflictBubbleShown[]; |
| 933 | 934 |
| 934 extern const char kDRMSalt[]; | 935 extern const char kDRMSalt[]; |
| 935 extern const char kEnableDRM[]; | 936 extern const char kEnableDRM[]; |
| 936 | 937 |
| 937 extern const char kWatchdogExtensionActive[]; | 938 extern const char kWatchdogExtensionActive[]; |
| 938 | 939 |
| 939 } // namespace prefs | 940 } // namespace prefs |
| 940 | 941 |
| 941 #endif // CHROME_COMMON_PREF_NAMES_H_ | 942 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |