| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 extern const char kStabilityCrashedActivityCounts[]; | 447 extern const char kStabilityCrashedActivityCounts[]; |
| 448 #endif | 448 #endif |
| 449 | 449 |
| 450 extern const char kStabilityPluginStats[]; | 450 extern const char kStabilityPluginStats[]; |
| 451 extern const char kStabilityPluginName[]; | 451 extern const char kStabilityPluginName[]; |
| 452 extern const char kStabilityPluginLaunches[]; | 452 extern const char kStabilityPluginLaunches[]; |
| 453 extern const char kStabilityPluginInstances[]; | 453 extern const char kStabilityPluginInstances[]; |
| 454 extern const char kStabilityPluginCrashes[]; | 454 extern const char kStabilityPluginCrashes[]; |
| 455 extern const char kStabilityPluginLoadingErrors[]; | 455 extern const char kStabilityPluginLoadingErrors[]; |
| 456 | 456 |
| 457 extern const char kInstallDate[]; | |
| 458 extern const char kUninstallMetricsPageLoadCount[]; | 457 extern const char kUninstallMetricsPageLoadCount[]; |
| 459 extern const char kUninstallLastLaunchTimeSec[]; | 458 extern const char kUninstallLastLaunchTimeSec[]; |
| 460 extern const char kUninstallLastObservedRunTimeSec[]; | 459 extern const char kUninstallLastObservedRunTimeSec[]; |
| 461 | 460 |
| 462 extern const char kBrowserSuppressDefaultBrowserPrompt[]; | 461 extern const char kBrowserSuppressDefaultBrowserPrompt[]; |
| 463 | 462 |
| 464 extern const char kBrowserWindowPlacement[]; | 463 extern const char kBrowserWindowPlacement[]; |
| 465 extern const char kBrowserWindowPlacementPopup[]; | 464 extern const char kBrowserWindowPlacementPopup[]; |
| 466 extern const char kTaskManagerWindowPlacement[]; | 465 extern const char kTaskManagerWindowPlacement[]; |
| 467 extern const char kKeywordEditorWindowPlacement[]; | 466 extern const char kKeywordEditorWindowPlacement[]; |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 | 814 |
| 816 #if defined(OS_ANDROID) | 815 #if defined(OS_ANDROID) |
| 817 extern const char kPartnerBookmarkMappings[]; | 816 extern const char kPartnerBookmarkMappings[]; |
| 818 #endif | 817 #endif |
| 819 | 818 |
| 820 extern const char kQuickCheckEnabled[]; | 819 extern const char kQuickCheckEnabled[]; |
| 821 | 820 |
| 822 } // namespace prefs | 821 } // namespace prefs |
| 823 | 822 |
| 824 #endif // CHROME_COMMON_PREF_NAMES_H_ | 823 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |