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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 extern const char kCopresenceAnonymousDeviceId[]; | 410 extern const char kCopresenceAnonymousDeviceId[]; |
411 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; | 411 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
412 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; | 412 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
413 #endif | 413 #endif |
414 | 414 |
415 #if defined(ENABLE_WEBRTC) | 415 #if defined(ENABLE_WEBRTC) |
416 extern const char kWebRTCMultipleRoutesEnabled[]; | 416 extern const char kWebRTCMultipleRoutesEnabled[]; |
417 extern const char kWebRTCNonProxiedUdpEnabled[]; | 417 extern const char kWebRTCNonProxiedUdpEnabled[]; |
418 #endif | 418 #endif |
419 | 419 |
420 // Local state prefs. Please add Profile prefs above instead. | |
421 extern const char kCertRevocationCheckingEnabled[]; | |
422 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | |
423 extern const char kSSLVersionMin[]; | |
424 extern const char kSSLVersionMax[]; | |
425 extern const char kSSLVersionFallbackMin[]; | |
426 extern const char kCipherSuiteBlacklist[]; | |
427 | |
428 extern const char kGLVendorString[]; | 420 extern const char kGLVendorString[]; |
429 extern const char kGLRendererString[]; | 421 extern const char kGLRendererString[]; |
430 extern const char kGLVersionString[]; | 422 extern const char kGLVersionString[]; |
431 | 423 |
432 // Android has it's own metric / crash reporting implemented in Android | 424 // Android has it's own metric / crash reporting implemented in Android |
433 // Java code so kMetricsReportingEnabled doesn't make sense. We use this | 425 // Java code so kMetricsReportingEnabled doesn't make sense. We use this |
434 // to inform crashes_ui that we have enabled crash reporting. | 426 // to inform crashes_ui that we have enabled crash reporting. |
435 #if defined(OS_ANDROID) | 427 #if defined(OS_ANDROID) |
436 extern const char kCrashReportingEnabled[]; | 428 extern const char kCrashReportingEnabled[]; |
437 #endif | 429 #endif |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 | 800 |
809 #if defined(ENABLE_EXTENSIONS) | 801 #if defined(ENABLE_EXTENSIONS) |
810 extern const char kAnimationPolicy[]; | 802 extern const char kAnimationPolicy[]; |
811 #endif | 803 #endif |
812 | 804 |
813 extern const char kBackgroundTracingLastUpload[]; | 805 extern const char kBackgroundTracingLastUpload[]; |
814 | 806 |
815 } // namespace prefs | 807 } // namespace prefs |
816 | 808 |
817 #endif // CHROME_COMMON_PREF_NAMES_H_ | 809 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |