| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 extern const char kGLVersionString[]; | 439 extern const char kGLVersionString[]; |
| 440 | 440 |
| 441 #if defined(OS_ANDROID) | 441 #if defined(OS_ANDROID) |
| 442 extern const char kGLExtensionsString[]; | 442 extern const char kGLExtensionsString[]; |
| 443 extern const char kGpuDriverInfoMaxSamples[]; | 443 extern const char kGpuDriverInfoMaxSamples[]; |
| 444 extern const char kGpuDriverInfoResetNotificationStrategy[]; | 444 extern const char kGpuDriverInfoResetNotificationStrategy[]; |
| 445 extern const char kGpuDriverInfoShaderVersion[]; | 445 extern const char kGpuDriverInfoShaderVersion[]; |
| 446 extern const char kGpuDriverInfoBuildFingerPrint[]; | 446 extern const char kGpuDriverInfoBuildFingerPrint[]; |
| 447 #endif | 447 #endif |
| 448 | 448 |
| 449 // Android has it's own metric / crash reporting implemented in Android | 449 // Deprecated preference for metric / crash reporting on Android. Use |
| 450 // Java code so kMetricsReportingEnabled doesn't make sense. We use this | 450 // kMetricsReportingEnabled instead. |
| 451 // to inform crashes_ui that we have enabled crash reporting. | |
| 452 #if BUILDFLAG(ANDROID_JAVA_UI) | 451 #if BUILDFLAG(ANDROID_JAVA_UI) |
| 453 extern const char kCrashReportingEnabled[]; | 452 extern const char kCrashReportingEnabled[]; |
| 454 #endif | 453 #endif |
| 455 | 454 |
| 456 extern const char kDeviceOpenNetworkConfiguration[]; | 455 extern const char kDeviceOpenNetworkConfiguration[]; |
| 457 | 456 |
| 458 extern const char kProfileLastUsed[]; | 457 extern const char kProfileLastUsed[]; |
| 459 extern const char kProfilesLastActive[]; | 458 extern const char kProfilesLastActive[]; |
| 460 extern const char kProfilesNumCreated[]; | 459 extern const char kProfilesNumCreated[]; |
| 461 extern const char kProfileInfoCache[]; | 460 extern const char kProfileInfoCache[]; |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 #endif | 826 #endif |
| 828 | 827 |
| 829 extern const char kOriginTrialPublicKey[]; | 828 extern const char kOriginTrialPublicKey[]; |
| 830 extern const char kOriginTrialDisabledFeatures[]; | 829 extern const char kOriginTrialDisabledFeatures[]; |
| 831 | 830 |
| 832 extern const char kComponentUpdatesEnabled[]; | 831 extern const char kComponentUpdatesEnabled[]; |
| 833 | 832 |
| 834 } // namespace prefs | 833 } // namespace prefs |
| 835 | 834 |
| 836 #endif // CHROME_COMMON_PREF_NAMES_H_ | 835 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |