| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 195 |
| 196 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 196 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
| 197 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 197 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
| 198 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 198 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 199 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 199 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 200 | 200 |
| 201 extern const wchar_t kNumKeywords[]; | 201 extern const wchar_t kNumKeywords[]; |
| 202 | 202 |
| 203 extern const wchar_t kEnableExtensions[]; | 203 extern const wchar_t kEnableExtensions[]; |
| 204 extern const wchar_t kEnableUserScripts[]; | 204 extern const wchar_t kEnableUserScripts[]; |
| 205 extern const wchar_t kShowExtensionShelf[]; |
| 205 | 206 |
| 206 extern const wchar_t kLastExtensionsUpdateCheck[]; | 207 extern const wchar_t kLastExtensionsUpdateCheck[]; |
| 207 extern const wchar_t kNextExtensionsUpdateCheck[]; | 208 extern const wchar_t kNextExtensionsUpdateCheck[]; |
| 208 | 209 |
| 209 extern const wchar_t kExtensionBlacklistUpdateVersion[]; | 210 extern const wchar_t kExtensionBlacklistUpdateVersion[]; |
| 210 | 211 |
| 211 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; | 212 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; |
| 212 extern const wchar_t kNTPMostVisitedPinnedURLs[]; | 213 extern const wchar_t kNTPMostVisitedPinnedURLs[]; |
| 213 extern const wchar_t kNTPTipsCache[]; | 214 extern const wchar_t kNTPTipsCache[]; |
| 214 extern const wchar_t kNTPTipsCacheUpdate[]; | 215 extern const wchar_t kNTPTipsCacheUpdate[]; |
| 215 extern const wchar_t kNTPTipsServer[]; | 216 extern const wchar_t kNTPTipsServer[]; |
| 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 |