| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 extern const wchar_t kUninstallMetricsInstallDate[]; | 223 extern const wchar_t kUninstallMetricsInstallDate[]; |
| 224 extern const wchar_t kUninstallMetricsUptimeSec[]; | 224 extern const wchar_t kUninstallMetricsUptimeSec[]; |
| 225 extern const wchar_t kUninstallLastLaunchTimeSec[]; | 225 extern const wchar_t kUninstallLastLaunchTimeSec[]; |
| 226 extern const wchar_t kUninstallLastObservedRunTimeSec[]; | 226 extern const wchar_t kUninstallLastObservedRunTimeSec[]; |
| 227 | 227 |
| 228 extern const wchar_t kBrowserWindowPlacement[]; | 228 extern const wchar_t kBrowserWindowPlacement[]; |
| 229 extern const wchar_t kTaskManagerWindowPlacement[]; | 229 extern const wchar_t kTaskManagerWindowPlacement[]; |
| 230 extern const wchar_t kPageInfoWindowPlacement[]; | 230 extern const wchar_t kPageInfoWindowPlacement[]; |
| 231 extern const wchar_t kKeywordEditorWindowPlacement[]; | 231 extern const wchar_t kKeywordEditorWindowPlacement[]; |
| 232 extern const wchar_t kPreferencesWindowPlacement[]; |
| 232 extern const wchar_t kMemoryCacheSize[]; | 233 extern const wchar_t kMemoryCacheSize[]; |
| 233 | 234 |
| 234 extern const wchar_t kDownloadDefaultDirectory[]; | 235 extern const wchar_t kDownloadDefaultDirectory[]; |
| 235 extern const wchar_t kDownloadExtensionsToOpen[]; | 236 extern const wchar_t kDownloadExtensionsToOpen[]; |
| 236 extern const wchar_t kDownloadDirUpgraded[]; | 237 extern const wchar_t kDownloadDirUpgraded[]; |
| 237 | 238 |
| 238 extern const wchar_t kSaveFileDefaultDirectory[]; | 239 extern const wchar_t kSaveFileDefaultDirectory[]; |
| 239 | 240 |
| 240 extern const wchar_t kHungPluginDetectFrequency[]; | 241 extern const wchar_t kHungPluginDetectFrequency[]; |
| 241 extern const wchar_t kPluginMessageResponseTimeout[]; | 242 extern const wchar_t kPluginMessageResponseTimeout[]; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 | 316 |
| 316 extern const wchar_t kCloudPrintServiceURL[]; | 317 extern const wchar_t kCloudPrintServiceURL[]; |
| 317 extern const wchar_t kCloudPrintProxyId[]; | 318 extern const wchar_t kCloudPrintProxyId[]; |
| 318 extern const wchar_t kCloudPrintAuthToken[]; | 319 extern const wchar_t kCloudPrintAuthToken[]; |
| 319 extern const wchar_t kCloudPrintXMPPAuthToken[]; | 320 extern const wchar_t kCloudPrintXMPPAuthToken[]; |
| 320 extern const wchar_t kCloudPrintEmail[]; | 321 extern const wchar_t kCloudPrintEmail[]; |
| 321 | 322 |
| 322 } // namespace prefs | 323 } // namespace prefs |
| 323 | 324 |
| 324 #endif // CHROME_COMMON_PREF_NAMES_H_ | 325 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |