| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 extern const char kNumBookmarksOnBookmarkBar[]; | 339 extern const char kNumBookmarksOnBookmarkBar[]; |
| 340 extern const char kNumFoldersOnBookmarkBar[]; | 340 extern const char kNumFoldersOnBookmarkBar[]; |
| 341 extern const char kNumBookmarksInOtherBookmarkFolder[]; | 341 extern const char kNumBookmarksInOtherBookmarkFolder[]; |
| 342 extern const char kNumFoldersInOtherBookmarkFolder[]; | 342 extern const char kNumFoldersInOtherBookmarkFolder[]; |
| 343 | 343 |
| 344 extern const char kNumKeywords[]; | 344 extern const char kNumKeywords[]; |
| 345 | 345 |
| 346 extern const char kDisableVideoAndChat[]; | 346 extern const char kDisableVideoAndChat[]; |
| 347 | 347 |
| 348 extern const char kDisableExtensions[]; | 348 extern const char kDisableExtensions[]; |
| 349 extern const char kDisablePluginFinder[]; |
| 349 extern const char kBrowserActionContainerWidth[]; | 350 extern const char kBrowserActionContainerWidth[]; |
| 350 | 351 |
| 351 extern const char kLastExtensionsUpdateCheck[]; | 352 extern const char kLastExtensionsUpdateCheck[]; |
| 352 extern const char kNextExtensionsUpdateCheck[]; | 353 extern const char kNextExtensionsUpdateCheck[]; |
| 353 | 354 |
| 354 extern const char kExtensionInstallAllowList[]; | 355 extern const char kExtensionInstallAllowList[]; |
| 355 extern const char kExtensionInstallDenyList[]; | 356 extern const char kExtensionInstallDenyList[]; |
| 356 | 357 |
| 357 extern const char kExtensionInstallForceList[]; | 358 extern const char kExtensionInstallForceList[]; |
| 358 | 359 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 | 453 |
| 453 extern const char kKnownBackgroundPages[]; | 454 extern const char kKnownBackgroundPages[]; |
| 454 | 455 |
| 455 extern const char kDisable3DAPIs[]; | 456 extern const char kDisable3DAPIs[]; |
| 456 | 457 |
| 457 extern const char kRegisteredProtocolHandlers[]; | 458 extern const char kRegisteredProtocolHandlers[]; |
| 458 | 459 |
| 459 } // namespace prefs | 460 } // namespace prefs |
| 460 | 461 |
| 461 #endif // CHROME_COMMON_PREF_NAMES_H_ | 462 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |