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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 extern const char kEasyUnlockProximityRequired[]; | 411 extern const char kEasyUnlockProximityRequired[]; |
412 extern const char kEasyUnlockShowTutorial[]; | 412 extern const char kEasyUnlockShowTutorial[]; |
413 | 413 |
414 extern const char kZeroSuggestCachedResults[]; | 414 extern const char kZeroSuggestCachedResults[]; |
415 | 415 |
416 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 416 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
417 extern const char kCopresenceAuthenticatedDeviceId[]; | 417 extern const char kCopresenceAuthenticatedDeviceId[]; |
418 extern const char kCopresenceAnonymousDeviceId[]; | 418 extern const char kCopresenceAnonymousDeviceId[]; |
419 #endif | 419 #endif |
420 | 420 |
| 421 #if defined(ENABLE_WEBRTC) |
| 422 extern const char kWebRTCMultipleRoutesDisabled[]; |
| 423 #endif |
| 424 |
421 // Local state prefs. Please add Profile prefs above instead. | 425 // Local state prefs. Please add Profile prefs above instead. |
422 extern const char kCertRevocationCheckingEnabled[]; | 426 extern const char kCertRevocationCheckingEnabled[]; |
423 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 427 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
424 extern const char kSSLVersionMin[]; | 428 extern const char kSSLVersionMin[]; |
425 extern const char kSSLVersionMax[]; | 429 extern const char kSSLVersionMax[]; |
426 extern const char kSSLVersionFallbackMin[]; | 430 extern const char kSSLVersionFallbackMin[]; |
427 extern const char kCipherSuiteBlacklist[]; | 431 extern const char kCipherSuiteBlacklist[]; |
428 extern const char kDisableSSLRecordSplitting[]; | 432 extern const char kDisableSSLRecordSplitting[]; |
429 | 433 |
430 extern const char kSSLBlockingBypassed[]; | 434 extern const char kSSLBlockingBypassed[]; |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 | 821 |
818 extern const char kRecoveryComponentNeedsElevation[]; | 822 extern const char kRecoveryComponentNeedsElevation[]; |
819 | 823 |
820 #if defined(ENABLE_EXTENSIONS) | 824 #if defined(ENABLE_EXTENSIONS) |
821 extern const char kAnimationPolicy[]; | 825 extern const char kAnimationPolicy[]; |
822 #endif | 826 #endif |
823 | 827 |
824 } // namespace prefs | 828 } // namespace prefs |
825 | 829 |
826 #endif // CHROME_COMMON_PREF_NAMES_H_ | 830 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |