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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 extern const char kPreferenceResetTime[]; | 403 extern const char kPreferenceResetTime[]; |
404 | 404 |
405 extern const char kGCMChannelEnabled[]; | 405 extern const char kGCMChannelEnabled[]; |
406 extern const char kPushMessagingRegistrationCount[]; | 406 extern const char kPushMessagingRegistrationCount[]; |
407 | 407 |
408 extern const char kEasyUnlockAllowed[]; | 408 extern const char kEasyUnlockAllowed[]; |
409 extern const char kEasyUnlockEnabled[]; | 409 extern const char kEasyUnlockEnabled[]; |
410 extern const char kEasyUnlockPairing[]; | 410 extern const char kEasyUnlockPairing[]; |
411 extern const char kEasyUnlockProximityRequired[]; | 411 extern const char kEasyUnlockProximityRequired[]; |
412 extern const char kEasyUnlockShowTutorial[]; | 412 extern const char kEasyUnlockShowTutorial[]; |
| 413 extern const char kEasyUnlockUserTpmKey[]; |
413 | 414 |
414 extern const char kZeroSuggestCachedResults[]; | 415 extern const char kZeroSuggestCachedResults[]; |
415 | 416 |
416 // Local state prefs. Please add Profile prefs above instead. | 417 // Local state prefs. Please add Profile prefs above instead. |
417 extern const char kCertRevocationCheckingEnabled[]; | 418 extern const char kCertRevocationCheckingEnabled[]; |
418 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 419 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
419 extern const char kSSLVersionMin[]; | 420 extern const char kSSLVersionMin[]; |
420 extern const char kSSLVersionMax[]; | 421 extern const char kSSLVersionMax[]; |
421 extern const char kSSLVersionFallbackMin[]; | 422 extern const char kSSLVersionFallbackMin[]; |
422 extern const char kCipherSuiteBlacklist[]; | 423 extern const char kCipherSuiteBlacklist[]; |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
802 | 803 |
803 #if defined(OS_ANDROID) | 804 #if defined(OS_ANDROID) |
804 extern const char kPartnerBookmarkMappings[]; | 805 extern const char kPartnerBookmarkMappings[]; |
805 #endif | 806 #endif |
806 | 807 |
807 extern const char kQuickCheckEnabled[]; | 808 extern const char kQuickCheckEnabled[]; |
808 extern const char kBrowserGuestModeEnabled[]; | 809 extern const char kBrowserGuestModeEnabled[]; |
809 extern const char kBrowserAddPersonEnabled[]; | 810 extern const char kBrowserAddPersonEnabled[]; |
810 | 811 |
811 extern const char kEasyUnlockHardlockState[]; | 812 extern const char kEasyUnlockHardlockState[]; |
| 813 extern const char kEasyUnlockLocalStateTpmKeys[]; |
812 | 814 |
813 extern const char kPasswordBubbleTimeStamp[]; | 815 extern const char kPasswordBubbleTimeStamp[]; |
814 extern const char kPasswordBubbleNopesCount[]; | 816 extern const char kPasswordBubbleNopesCount[]; |
815 extern const char kPasswordBubbleLastInteractions[]; | 817 extern const char kPasswordBubbleLastInteractions[]; |
816 | 818 |
817 } // namespace prefs | 819 } // namespace prefs |
818 | 820 |
819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 821 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |