| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 extern const wchar_t kUninstallLaunchCount[]; | 153 extern const wchar_t kUninstallLaunchCount[]; |
| 154 | 154 |
| 155 extern const wchar_t kUninstallMetricsInstallDate[]; | 155 extern const wchar_t kUninstallMetricsInstallDate[]; |
| 156 extern const wchar_t kUninstallMetricsUptimeSec[]; | 156 extern const wchar_t kUninstallMetricsUptimeSec[]; |
| 157 extern const wchar_t kUninstallLastLaunchTimeSec[]; | 157 extern const wchar_t kUninstallLastLaunchTimeSec[]; |
| 158 extern const wchar_t kUninstallLastObservedRunTimeSec[]; | 158 extern const wchar_t kUninstallLastObservedRunTimeSec[]; |
| 159 | 159 |
| 160 extern const wchar_t kBrowserWindowPlacement[]; | 160 extern const wchar_t kBrowserWindowPlacement[]; |
| 161 extern const wchar_t kTaskManagerWindowPlacement[]; | 161 extern const wchar_t kTaskManagerWindowPlacement[]; |
| 162 extern const wchar_t kPageInfoWindowPlacement[]; | 162 extern const wchar_t kPageInfoWindowPlacement[]; |
| 163 extern const wchar_t kKeywordEditorWindowPlacement[]; |
| 163 extern const wchar_t kMemoryCacheSize[]; | 164 extern const wchar_t kMemoryCacheSize[]; |
| 164 | 165 |
| 165 extern const wchar_t kDownloadDefaultDirectory[]; | 166 extern const wchar_t kDownloadDefaultDirectory[]; |
| 166 extern const wchar_t kDownloadExtensionsToOpen[]; | 167 extern const wchar_t kDownloadExtensionsToOpen[]; |
| 167 extern const wchar_t kDownloadDirUpgraded[]; | 168 extern const wchar_t kDownloadDirUpgraded[]; |
| 168 | 169 |
| 169 extern const wchar_t kSaveFileDefaultDirectory[]; | 170 extern const wchar_t kSaveFileDefaultDirectory[]; |
| 170 | 171 |
| 171 extern const wchar_t kHungPluginDetectFrequency[]; | 172 extern const wchar_t kHungPluginDetectFrequency[]; |
| 172 extern const wchar_t kPluginMessageResponseTimeout[]; | 173 extern const wchar_t kPluginMessageResponseTimeout[]; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 extern const wchar_t kNTPShownSections[]; | 217 extern const wchar_t kNTPShownSections[]; |
| 217 | 218 |
| 218 extern const wchar_t kDevToolsOpenDocked[]; | 219 extern const wchar_t kDevToolsOpenDocked[]; |
| 219 extern const wchar_t kDevToolsSplitLocation[]; | 220 extern const wchar_t kDevToolsSplitLocation[]; |
| 220 | 221 |
| 221 extern const wchar_t kSyncLastSyncedTime[]; | 222 extern const wchar_t kSyncLastSyncedTime[]; |
| 222 extern const wchar_t kSyncHasSetupCompleted[]; | 223 extern const wchar_t kSyncHasSetupCompleted[]; |
| 223 } | 224 } |
| 224 | 225 |
| 225 #endif // CHROME_COMMON_PREF_NAMES_H_ | 226 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |