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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 | 469 |
470 extern const char kProfileLastUsed[]; | 470 extern const char kProfileLastUsed[]; |
471 extern const char kProfilesLastActive[]; | 471 extern const char kProfilesLastActive[]; |
472 extern const char kProfilesNumCreated[]; | 472 extern const char kProfilesNumCreated[]; |
473 extern const char kProfileInfoCache[]; | 473 extern const char kProfileInfoCache[]; |
474 extern const char kProfileCreatedByVersion[]; | 474 extern const char kProfileCreatedByVersion[]; |
475 | 475 |
476 extern const char kProfileMetrics[]; | 476 extern const char kProfileMetrics[]; |
477 extern const char kProfilePrefix[]; | 477 extern const char kProfilePrefix[]; |
478 | 478 |
| 479 extern const char kResetDefaultSearchEngine[]; |
| 480 extern const char kResetHomepage[]; |
| 481 extern const char kResetContentSettings[]; |
| 482 extern const char kResetCookiesAndSiteData[]; |
| 483 extern const char kResetExtensions[]; |
| 484 extern const char kResetExtensionsHandling[]; |
| 485 |
479 extern const char kStabilityExitedCleanly[]; | 486 extern const char kStabilityExitedCleanly[]; |
480 extern const char kStabilityStatsVersion[]; | 487 extern const char kStabilityStatsVersion[]; |
481 extern const char kStabilityStatsBuildTime[]; | 488 extern const char kStabilityStatsBuildTime[]; |
482 extern const char kStabilitySessionEndCompleted[]; | 489 extern const char kStabilitySessionEndCompleted[]; |
483 extern const char kStabilityLaunchCount[]; | 490 extern const char kStabilityLaunchCount[]; |
484 extern const char kStabilityCrashCount[]; | 491 extern const char kStabilityCrashCount[]; |
485 extern const char kStabilityIncompleteSessionEndCount[]; | 492 extern const char kStabilityIncompleteSessionEndCount[]; |
486 extern const char kStabilityPageLoadCount[]; | 493 extern const char kStabilityPageLoadCount[]; |
487 extern const char kStabilityRendererCrashCount[]; | 494 extern const char kStabilityRendererCrashCount[]; |
488 extern const char kStabilityExtensionRendererCrashCount[]; | 495 extern const char kStabilityExtensionRendererCrashCount[]; |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
912 extern const char kAppListLaunchCount[]; | 919 extern const char kAppListLaunchCount[]; |
913 extern const char kLastAppListAppLaunchPing[]; | 920 extern const char kLastAppListAppLaunchPing[]; |
914 extern const char kAppListAppLaunchCount[]; | 921 extern const char kAppListAppLaunchCount[]; |
915 | 922 |
916 extern const char kDRMSalt[]; | 923 extern const char kDRMSalt[]; |
917 extern const char kEnableDRM[]; | 924 extern const char kEnableDRM[]; |
918 | 925 |
919 } // namespace prefs | 926 } // namespace prefs |
920 | 927 |
921 #endif // CHROME_COMMON_PREF_NAMES_H_ | 928 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |