| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 extern const char kStabilityCrashedActivityCounts[]; | 452 extern const char kStabilityCrashedActivityCounts[]; |
| 453 #endif | 453 #endif |
| 454 | 454 |
| 455 extern const char kStabilityPluginStats[]; | 455 extern const char kStabilityPluginStats[]; |
| 456 extern const char kStabilityPluginName[]; | 456 extern const char kStabilityPluginName[]; |
| 457 extern const char kStabilityPluginLaunches[]; | 457 extern const char kStabilityPluginLaunches[]; |
| 458 extern const char kStabilityPluginInstances[]; | 458 extern const char kStabilityPluginInstances[]; |
| 459 extern const char kStabilityPluginCrashes[]; | 459 extern const char kStabilityPluginCrashes[]; |
| 460 extern const char kStabilityPluginLoadingErrors[]; | 460 extern const char kStabilityPluginLoadingErrors[]; |
| 461 | 461 |
| 462 extern const char kInstallDate[]; | |
| 463 extern const char kUninstallMetricsPageLoadCount[]; | 462 extern const char kUninstallMetricsPageLoadCount[]; |
| 464 extern const char kUninstallLastLaunchTimeSec[]; | 463 extern const char kUninstallLastLaunchTimeSec[]; |
| 465 extern const char kUninstallLastObservedRunTimeSec[]; | 464 extern const char kUninstallLastObservedRunTimeSec[]; |
| 466 | 465 |
| 467 extern const char kBrowserSuppressDefaultBrowserPrompt[]; | 466 extern const char kBrowserSuppressDefaultBrowserPrompt[]; |
| 468 | 467 |
| 469 extern const char kBrowserWindowPlacement[]; | 468 extern const char kBrowserWindowPlacement[]; |
| 470 extern const char kBrowserWindowPlacementPopup[]; | 469 extern const char kBrowserWindowPlacementPopup[]; |
| 471 extern const char kTaskManagerWindowPlacement[]; | 470 extern const char kTaskManagerWindowPlacement[]; |
| 472 extern const char kKeywordEditorWindowPlacement[]; | 471 extern const char kKeywordEditorWindowPlacement[]; |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 | 819 |
| 821 #if defined(OS_ANDROID) | 820 #if defined(OS_ANDROID) |
| 822 extern const char kPartnerBookmarkMappings[]; | 821 extern const char kPartnerBookmarkMappings[]; |
| 823 #endif | 822 #endif |
| 824 | 823 |
| 825 extern const char kQuickCheckEnabled[]; | 824 extern const char kQuickCheckEnabled[]; |
| 826 | 825 |
| 827 } // namespace prefs | 826 } // namespace prefs |
| 828 | 827 |
| 829 #endif // CHROME_COMMON_PREF_NAMES_H_ | 828 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |