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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 extern const char kCopresenceAnonymousDeviceId[]; | 402 extern const char kCopresenceAnonymousDeviceId[]; |
403 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; | 403 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
404 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; | 404 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
405 #endif | 405 #endif |
406 | 406 |
407 #if defined(ENABLE_WEBRTC) | 407 #if defined(ENABLE_WEBRTC) |
408 extern const char kWebRTCMultipleRoutesEnabled[]; | 408 extern const char kWebRTCMultipleRoutesEnabled[]; |
409 extern const char kWebRTCNonProxiedUdpEnabled[]; | 409 extern const char kWebRTCNonProxiedUdpEnabled[]; |
410 #endif | 410 #endif |
411 | 411 |
412 // Local state prefs. Please add Profile prefs above instead. | |
413 extern const char kCertRevocationCheckingEnabled[]; | |
414 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | |
415 extern const char kSSLVersionMin[]; | |
416 extern const char kSSLVersionMax[]; | |
417 extern const char kSSLVersionFallbackMin[]; | |
418 extern const char kCipherSuiteBlacklist[]; | |
419 | |
420 extern const char kGLVendorString[]; | 412 extern const char kGLVendorString[]; |
421 extern const char kGLRendererString[]; | 413 extern const char kGLRendererString[]; |
422 extern const char kGLVersionString[]; | 414 extern const char kGLVersionString[]; |
423 | 415 |
424 // Android has it's own metric / crash reporting implemented in Android | 416 // Android has it's own metric / crash reporting implemented in Android |
425 // Java code so kMetricsReportingEnabled doesn't make sense. We use this | 417 // Java code so kMetricsReportingEnabled doesn't make sense. We use this |
426 // to inform crashes_ui that we have enabled crash reporting. | 418 // to inform crashes_ui that we have enabled crash reporting. |
427 #if defined(OS_ANDROID) | 419 #if defined(OS_ANDROID) |
428 extern const char kCrashReportingEnabled[]; | 420 extern const char kCrashReportingEnabled[]; |
429 #endif | 421 #endif |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 | 792 |
801 #if defined(ENABLE_EXTENSIONS) | 793 #if defined(ENABLE_EXTENSIONS) |
802 extern const char kAnimationPolicy[]; | 794 extern const char kAnimationPolicy[]; |
803 #endif | 795 #endif |
804 | 796 |
805 extern const char kBackgroundTracingLastUpload[]; | 797 extern const char kBackgroundTracingLastUpload[]; |
806 | 798 |
807 } // namespace prefs | 799 } // namespace prefs |
808 | 800 |
809 #endif // CHROME_COMMON_PREF_NAMES_H_ | 801 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |