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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 | 276 |
277 extern const wchar_t kRestartLastSessionOnShutdown[]; | 277 extern const wchar_t kRestartLastSessionOnShutdown[]; |
278 | 278 |
279 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 279 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
280 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 280 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
281 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 281 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
282 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 282 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
283 | 283 |
284 extern const wchar_t kNumKeywords[]; | 284 extern const wchar_t kNumKeywords[]; |
285 | 285 |
| 286 extern const wchar_t kDisableVideoAndChat[]; |
| 287 |
286 extern const wchar_t kDisableExtensions[]; | 288 extern const wchar_t kDisableExtensions[]; |
287 extern const wchar_t kShowExtensionShelf[]; | 289 extern const wchar_t kShowExtensionShelf[]; |
288 extern const wchar_t kBrowserActionContainerWidth[]; | 290 extern const wchar_t kBrowserActionContainerWidth[]; |
289 | 291 |
290 extern const wchar_t kLastExtensionsUpdateCheck[]; | 292 extern const wchar_t kLastExtensionsUpdateCheck[]; |
291 extern const wchar_t kNextExtensionsUpdateCheck[]; | 293 extern const wchar_t kNextExtensionsUpdateCheck[]; |
292 | 294 |
293 extern const wchar_t kExtensionBlacklistUpdateVersion[]; | 295 extern const wchar_t kExtensionBlacklistUpdateVersion[]; |
294 | 296 |
295 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; | 297 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 extern const wchar_t kProxyAutoDetect[]; | 337 extern const wchar_t kProxyAutoDetect[]; |
336 extern const wchar_t kProxyServer[]; | 338 extern const wchar_t kProxyServer[]; |
337 extern const wchar_t kProxyPacUrl[]; | 339 extern const wchar_t kProxyPacUrl[]; |
338 extern const wchar_t kProxyBypassList[]; | 340 extern const wchar_t kProxyBypassList[]; |
339 | 341 |
340 extern const wchar_t kRegisteredBackgroundContents[]; | 342 extern const wchar_t kRegisteredBackgroundContents[]; |
341 | 343 |
342 } // namespace prefs | 344 } // namespace prefs |
343 | 345 |
344 #endif // CHROME_COMMON_PREF_NAMES_H_ | 346 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |