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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 extern const char kVariationsSeedHash[]; | 465 extern const char kVariationsSeedHash[]; |
466 | 466 |
467 extern const char kDeviceOpenNetworkConfiguration[]; | 467 extern const char kDeviceOpenNetworkConfiguration[]; |
468 | 468 |
469 extern const char kProfileLastUsed[]; | 469 extern const char kProfileLastUsed[]; |
470 extern const char kProfilesLastActive[]; | 470 extern const char kProfilesLastActive[]; |
471 extern const char kProfilesNumCreated[]; | 471 extern const char kProfilesNumCreated[]; |
472 extern const char kProfileInfoCache[]; | 472 extern const char kProfileInfoCache[]; |
473 extern const char kProfileCreatedByVersion[]; | 473 extern const char kProfileCreatedByVersion[]; |
474 | 474 |
| 475 extern const char kStabilityExecutionPhase[]; |
475 extern const char kStabilityExitedCleanly[]; | 476 extern const char kStabilityExitedCleanly[]; |
476 extern const char kStabilityStatsVersion[]; | 477 extern const char kStabilityStatsVersion[]; |
477 extern const char kStabilityStatsBuildTime[]; | 478 extern const char kStabilityStatsBuildTime[]; |
478 extern const char kStabilitySessionEndCompleted[]; | 479 extern const char kStabilitySessionEndCompleted[]; |
479 extern const char kStabilityLaunchCount[]; | 480 extern const char kStabilityLaunchCount[]; |
480 extern const char kStabilityCrashCount[]; | 481 extern const char kStabilityCrashCount[]; |
481 extern const char kStabilityIncompleteSessionEndCount[]; | 482 extern const char kStabilityIncompleteSessionEndCount[]; |
482 extern const char kStabilityPageLoadCount[]; | 483 extern const char kStabilityPageLoadCount[]; |
483 extern const char kStabilityRendererCrashCount[]; | 484 extern const char kStabilityRendererCrashCount[]; |
484 extern const char kStabilityExtensionRendererCrashCount[]; | 485 extern const char kStabilityExtensionRendererCrashCount[]; |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 | 937 |
937 extern const char kWatchdogExtensionActive[]; | 938 extern const char kWatchdogExtensionActive[]; |
938 | 939 |
939 extern const char kProfilePreferenceHashes[]; | 940 extern const char kProfilePreferenceHashes[]; |
940 | 941 |
941 extern const char kNetworkTimeMapping[]; | 942 extern const char kNetworkTimeMapping[]; |
942 | 943 |
943 } // namespace prefs | 944 } // namespace prefs |
944 | 945 |
945 #endif // CHROME_COMMON_PREF_NAMES_H_ | 946 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |