| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 extern const wchar_t kLastKnownGoogleURL[]; | 244 extern const wchar_t kLastKnownGoogleURL[]; |
| 245 extern const wchar_t kLastKnownIntranetRedirectOrigin[]; | 245 extern const wchar_t kLastKnownIntranetRedirectOrigin[]; |
| 246 | 246 |
| 247 extern const wchar_t kCountryIDAtInstall[]; | 247 extern const wchar_t kCountryIDAtInstall[]; |
| 248 extern const wchar_t kGeoIDAtInstall[]; // OBSOLETE | 248 extern const wchar_t kGeoIDAtInstall[]; // OBSOLETE |
| 249 | 249 |
| 250 extern const wchar_t kShutdownType[]; | 250 extern const wchar_t kShutdownType[]; |
| 251 extern const wchar_t kShutdownNumProcesses[]; | 251 extern const wchar_t kShutdownNumProcesses[]; |
| 252 extern const wchar_t kShutdownNumProcessesSlow[]; | 252 extern const wchar_t kShutdownNumProcessesSlow[]; |
| 253 | 253 |
| 254 extern const wchar_t kRestartLastSessionOnShutdown[]; |
| 255 |
| 254 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 256 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
| 255 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 257 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
| 256 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 258 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 257 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 259 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 258 | 260 |
| 259 extern const wchar_t kNumKeywords[]; | 261 extern const wchar_t kNumKeywords[]; |
| 260 | 262 |
| 261 extern const wchar_t kDisableExtensions[]; | 263 extern const wchar_t kDisableExtensions[]; |
| 262 extern const wchar_t kShowExtensionShelf[]; | 264 extern const wchar_t kShowExtensionShelf[]; |
| 263 extern const wchar_t kBrowserActionContainerWidth[]; | 265 extern const wchar_t kBrowserActionContainerWidth[]; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 302 |
| 301 extern const wchar_t kCloudPrintServiceURL[]; | 303 extern const wchar_t kCloudPrintServiceURL[]; |
| 302 extern const wchar_t kCloudPrintProxyId[]; | 304 extern const wchar_t kCloudPrintProxyId[]; |
| 303 extern const wchar_t kCloudPrintAuthToken[]; | 305 extern const wchar_t kCloudPrintAuthToken[]; |
| 304 extern const wchar_t kCloudPrintXMPPAuthToken[]; | 306 extern const wchar_t kCloudPrintXMPPAuthToken[]; |
| 305 extern const wchar_t kCloudPrintEmail[]; | 307 extern const wchar_t kCloudPrintEmail[]; |
| 306 | 308 |
| 307 } // namespace prefs | 309 } // namespace prefs |
| 308 | 310 |
| 309 #endif // CHROME_COMMON_PREF_NAMES_H_ | 311 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |