| 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 extern const char kGLRendererString[]; | 427 extern const char kGLRendererString[]; |
| 428 extern const char kGLVersionString[]; | 428 extern const char kGLVersionString[]; |
| 429 | 429 |
| 430 // Android has it's own metric / crash reporting implemented in Android | 430 // Android has it's own metric / crash reporting implemented in Android |
| 431 // Java code so kMetricsReportingEnabled doesn't make sense. We use this | 431 // Java code so kMetricsReportingEnabled doesn't make sense. We use this |
| 432 // to inform crashes_ui that we have enabled crash reporting. | 432 // to inform crashes_ui that we have enabled crash reporting. |
| 433 #if BUILDFLAG(ANDROID_JAVA_UI) | 433 #if BUILDFLAG(ANDROID_JAVA_UI) |
| 434 extern const char kCrashReportingEnabled[]; | 434 extern const char kCrashReportingEnabled[]; |
| 435 #endif | 435 #endif |
| 436 | 436 |
| 437 extern const char kMetricsDefaultOptIn[]; | |
| 438 | |
| 439 extern const char kDeviceOpenNetworkConfiguration[]; | 437 extern const char kDeviceOpenNetworkConfiguration[]; |
| 440 | 438 |
| 441 extern const char kProfileLastUsed[]; | 439 extern const char kProfileLastUsed[]; |
| 442 extern const char kProfilesLastActive[]; | 440 extern const char kProfilesLastActive[]; |
| 443 extern const char kProfilesNumCreated[]; | 441 extern const char kProfilesNumCreated[]; |
| 444 extern const char kProfileInfoCache[]; | 442 extern const char kProfileInfoCache[]; |
| 445 extern const char kProfileCreatedByVersion[]; | 443 extern const char kProfileCreatedByVersion[]; |
| 446 | 444 |
| 447 extern const char kStabilityOtherUserCrashCount[]; | 445 extern const char kStabilityOtherUserCrashCount[]; |
| 448 extern const char kStabilityKernelCrashCount[]; | 446 extern const char kStabilityKernelCrashCount[]; |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 #if defined(GOOGLE_CHROME_BUILD) | 794 #if defined(GOOGLE_CHROME_BUILD) |
| 797 extern const char kMediaRouterCloudServicesPrefSet[]; | 795 extern const char kMediaRouterCloudServicesPrefSet[]; |
| 798 extern const char kMediaRouterEnableCloudServices[]; | 796 extern const char kMediaRouterEnableCloudServices[]; |
| 799 #endif // defined(GOOGLE_CHROME_BUILD) | 797 #endif // defined(GOOGLE_CHROME_BUILD) |
| 800 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 798 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 801 #endif | 799 #endif |
| 802 | 800 |
| 803 } // namespace prefs | 801 } // namespace prefs |
| 804 | 802 |
| 805 #endif // CHROME_COMMON_PREF_NAMES_H_ | 803 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |