| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 extern const char kEnabledSyncedNotificationSendingServices[]; | 408 extern const char kEnabledSyncedNotificationSendingServices[]; |
| 409 extern const char kInitializedSyncedNotificationSendingServices[]; | 409 extern const char kInitializedSyncedNotificationSendingServices[]; |
| 410 | 410 |
| 411 extern const char kExtensionsPref[]; | 411 extern const char kExtensionsPref[]; |
| 412 extern const char kExtensionsLastChromeVersion[]; | 412 extern const char kExtensionsLastChromeVersion[]; |
| 413 | 413 |
| 414 extern const char kFullscreenAllowed[]; | 414 extern const char kFullscreenAllowed[]; |
| 415 | 415 |
| 416 extern const char kLocalDiscoveryNotificationsEnabled[]; | 416 extern const char kLocalDiscoveryNotificationsEnabled[]; |
| 417 | 417 |
| 418 extern const char kProfileResetPromptMemento[]; |
| 419 |
| 418 // Local state prefs. Please add Profile prefs above instead. | 420 // Local state prefs. Please add Profile prefs above instead. |
| 419 extern const char kCertRevocationCheckingEnabled[]; | 421 extern const char kCertRevocationCheckingEnabled[]; |
| 420 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 422 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
| 421 extern const char kSSLVersionMin[]; | 423 extern const char kSSLVersionMin[]; |
| 422 extern const char kSSLVersionMax[]; | 424 extern const char kSSLVersionMax[]; |
| 423 extern const char kCipherSuiteBlacklist[]; | 425 extern const char kCipherSuiteBlacklist[]; |
| 424 extern const char kEnableOriginBoundCerts[]; | 426 extern const char kEnableOriginBoundCerts[]; |
| 425 extern const char kDisableSSLRecordSplitting[]; | 427 extern const char kDisableSSLRecordSplitting[]; |
| 426 extern const char kEnableUnrestrictedSSL3Fallback[]; | 428 extern const char kEnableUnrestrictedSSL3Fallback[]; |
| 427 extern const char kEnableMemoryInfo[]; | 429 extern const char kEnableMemoryInfo[]; |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 extern const char kDRMSalt[]; | 918 extern const char kDRMSalt[]; |
| 917 extern const char kEnableDRM[]; | 919 extern const char kEnableDRM[]; |
| 918 | 920 |
| 919 extern const char kWatchdogExtensionActive[]; | 921 extern const char kWatchdogExtensionActive[]; |
| 920 | 922 |
| 921 extern const char kProfilePreferenceHashes[]; | 923 extern const char kProfilePreferenceHashes[]; |
| 922 | 924 |
| 923 } // namespace prefs | 925 } // namespace prefs |
| 924 | 926 |
| 925 #endif // CHROME_COMMON_PREF_NAMES_H_ | 927 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |