| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 extern const char kStabilitySavedSystemProfileHash[]; | 467 extern const char kStabilitySavedSystemProfileHash[]; |
| 468 extern const char kStabilityRendererCrashCount[]; | 468 extern const char kStabilityRendererCrashCount[]; |
| 469 extern const char kStabilityExtensionRendererCrashCount[]; | 469 extern const char kStabilityExtensionRendererCrashCount[]; |
| 470 extern const char kStabilityLaunchTimeSec[]; | 470 extern const char kStabilityLaunchTimeSec[]; |
| 471 extern const char kStabilityLastTimestampSec[]; | 471 extern const char kStabilityLastTimestampSec[]; |
| 472 extern const char kStabilityRendererHangCount[]; | 472 extern const char kStabilityRendererHangCount[]; |
| 473 extern const char kStabilityChildProcessCrashCount[]; | 473 extern const char kStabilityChildProcessCrashCount[]; |
| 474 extern const char kStabilityOtherUserCrashCount[]; | 474 extern const char kStabilityOtherUserCrashCount[]; |
| 475 extern const char kStabilityKernelCrashCount[]; | 475 extern const char kStabilityKernelCrashCount[]; |
| 476 extern const char kStabilitySystemUncleanShutdownCount[]; | 476 extern const char kStabilitySystemUncleanShutdownCount[]; |
| 477 #if defined(OS_ANDROID) |
| 478 extern const char kStabilityForegroundActivityType[]; |
| 479 extern const char kStabilityLaunchedActivityFlags[]; |
| 480 extern const char kStabilityLaunchedActivityCounts[]; |
| 481 extern const char kStabilityCrashedActivityCounts[]; |
| 482 #endif |
| 477 | 483 |
| 478 extern const char kStabilityBreakpadRegistrationSuccess[]; | 484 extern const char kStabilityBreakpadRegistrationSuccess[]; |
| 479 extern const char kStabilityBreakpadRegistrationFail[]; | 485 extern const char kStabilityBreakpadRegistrationFail[]; |
| 480 extern const char kStabilityDebuggerPresent[]; | 486 extern const char kStabilityDebuggerPresent[]; |
| 481 extern const char kStabilityDebuggerNotPresent[]; | 487 extern const char kStabilityDebuggerNotPresent[]; |
| 482 | 488 |
| 483 extern const char kStabilityPluginStats[]; | 489 extern const char kStabilityPluginStats[]; |
| 484 extern const char kStabilityPluginName[]; | 490 extern const char kStabilityPluginName[]; |
| 485 extern const char kStabilityPluginLaunches[]; | 491 extern const char kStabilityPluginLaunches[]; |
| 486 extern const char kStabilityPluginInstances[]; | 492 extern const char kStabilityPluginInstances[]; |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 #if defined(OS_WIN) | 942 #if defined(OS_WIN) |
| 937 extern const char kOsPasswordBlank[]; | 943 extern const char kOsPasswordBlank[]; |
| 938 extern const char kOsPasswordLastChanged[]; | 944 extern const char kOsPasswordLastChanged[]; |
| 939 #endif | 945 #endif |
| 940 | 946 |
| 941 extern const char kQuickCheckEnabled[]; | 947 extern const char kQuickCheckEnabled[]; |
| 942 | 948 |
| 943 } // namespace prefs | 949 } // namespace prefs |
| 944 | 950 |
| 945 #endif // CHROME_COMMON_PREF_NAMES_H_ | 951 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |