| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 extern const char kEnableUnrestrictedSSL3Fallback[]; | 414 extern const char kEnableUnrestrictedSSL3Fallback[]; |
| 415 extern const char kEnableMemoryInfo[]; | 415 extern const char kEnableMemoryInfo[]; |
| 416 | 416 |
| 417 extern const char kGLVendorString[]; | 417 extern const char kGLVendorString[]; |
| 418 extern const char kGLRendererString[]; | 418 extern const char kGLRendererString[]; |
| 419 extern const char kGLVersionString[]; | 419 extern const char kGLVersionString[]; |
| 420 | 420 |
| 421 extern const char kEulaAccepted[]; | 421 extern const char kEulaAccepted[]; |
| 422 | 422 |
| 423 extern const char kMetricsClientID[]; | 423 extern const char kMetricsClientID[]; |
| 424 extern const char kMetricsSecretClientID[]; |
| 424 extern const char kMetricsSessionID[]; | 425 extern const char kMetricsSessionID[]; |
| 425 extern const char kMetricsLowEntropySource[]; | 426 extern const char kMetricsLowEntropySource[]; |
| 426 extern const char kMetricsPermutedEntropyCache[]; | 427 extern const char kMetricsPermutedEntropyCache[]; |
| 427 extern const char kMetricsClientIDTimestamp[]; | 428 extern const char kMetricsClientIDTimestamp[]; |
| 428 extern const char kMetricsReportingEnabled[]; | 429 extern const char kMetricsReportingEnabled[]; |
| 429 // Android has it's own metric / crash reporting implemented in Android | 430 // Android has it's own metric / crash reporting implemented in Android |
| 430 // Java code so kMetricsReportingEnabled doesn't make sense. We use this | 431 // Java code so kMetricsReportingEnabled doesn't make sense. We use this |
| 431 // to inform crashes_ui that we have enabled crash reporting. | 432 // to inform crashes_ui that we have enabled crash reporting. |
| 432 #if defined(OS_ANDROID) | 433 #if defined(OS_ANDROID) |
| 433 extern const char kCrashReportingEnabled[]; | 434 extern const char kCrashReportingEnabled[]; |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 | 918 |
| 918 extern const char kWatchdogExtensionActive[]; | 919 extern const char kWatchdogExtensionActive[]; |
| 919 | 920 |
| 920 extern const char kProfilePreferenceHashes[]; | 921 extern const char kProfilePreferenceHashes[]; |
| 921 | 922 |
| 922 extern const char kNetworkTimeMapping[]; | 923 extern const char kNetworkTimeMapping[]; |
| 923 | 924 |
| 924 } // namespace prefs | 925 } // namespace prefs |
| 925 | 926 |
| 926 #endif // CHROME_COMMON_PREF_NAMES_H_ | 927 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |