| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 namespace prefs { | 10 namespace prefs { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 extern const wchar_t kStabilityPluginInstances[]; | 123 extern const wchar_t kStabilityPluginInstances[]; |
| 124 extern const wchar_t kStabilityPluginCrashes[]; | 124 extern const wchar_t kStabilityPluginCrashes[]; |
| 125 | 125 |
| 126 extern const wchar_t kUninstallMetricsPageLoadCount[]; | 126 extern const wchar_t kUninstallMetricsPageLoadCount[]; |
| 127 extern const wchar_t kUninstallLaunchCount[]; | 127 extern const wchar_t kUninstallLaunchCount[]; |
| 128 | 128 |
| 129 extern const wchar_t kUninstallMetricsUptimeSec[]; | 129 extern const wchar_t kUninstallMetricsUptimeSec[]; |
| 130 extern const wchar_t kUninstallLastLaunchTimeSec[]; | 130 extern const wchar_t kUninstallLastLaunchTimeSec[]; |
| 131 extern const wchar_t kUninstallLastObservedRunTimeSec[]; | 131 extern const wchar_t kUninstallLastObservedRunTimeSec[]; |
| 132 | 132 |
| 133 extern const wchar_t kStartRenderersManually[]; | |
| 134 extern const wchar_t kBrowserWindowPlacement[]; | 133 extern const wchar_t kBrowserWindowPlacement[]; |
| 135 extern const wchar_t kTaskManagerWindowPlacement[]; | 134 extern const wchar_t kTaskManagerWindowPlacement[]; |
| 136 extern const wchar_t kPageInfoWindowPlacement[]; | 135 extern const wchar_t kPageInfoWindowPlacement[]; |
| 137 extern const wchar_t kMemoryCacheSize[]; | 136 extern const wchar_t kMemoryCacheSize[]; |
| 138 | 137 |
| 139 extern const wchar_t kDownloadDefaultDirectory[]; | 138 extern const wchar_t kDownloadDefaultDirectory[]; |
| 140 extern const wchar_t kDownloadExtensionsToOpen[]; | 139 extern const wchar_t kDownloadExtensionsToOpen[]; |
| 141 extern const wchar_t kDownloadDirUpgraded[]; | 140 extern const wchar_t kDownloadDirUpgraded[]; |
| 142 | 141 |
| 143 extern const wchar_t kSaveFileDefaultDirectory[]; | 142 extern const wchar_t kSaveFileDefaultDirectory[]; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 170 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 169 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 171 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 170 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 172 | 171 |
| 173 extern const wchar_t kNumKeywords[]; | 172 extern const wchar_t kNumKeywords[]; |
| 174 | 173 |
| 175 extern const wchar_t kEnableExtensions[]; | 174 extern const wchar_t kEnableExtensions[]; |
| 176 extern const wchar_t kEnableUserScripts[]; | 175 extern const wchar_t kEnableUserScripts[]; |
| 177 } | 176 } |
| 178 | 177 |
| 179 #endif // CHROME_COMMON_PREF_NAMES_H_ | 178 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |