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