| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 | 484 |
| 485 extern const char kDisableVideoAndChat[]; | 485 extern const char kDisableVideoAndChat[]; |
| 486 | 486 |
| 487 extern const char kDisableExtensions[]; | 487 extern const char kDisableExtensions[]; |
| 488 extern const char kDisablePluginFinder[]; | 488 extern const char kDisablePluginFinder[]; |
| 489 extern const char kBrowserActionContainerWidth[]; | 489 extern const char kBrowserActionContainerWidth[]; |
| 490 | 490 |
| 491 extern const char kLastExtensionsUpdateCheck[]; | 491 extern const char kLastExtensionsUpdateCheck[]; |
| 492 extern const char kNextExtensionsUpdateCheck[]; | 492 extern const char kNextExtensionsUpdateCheck[]; |
| 493 | 493 |
| 494 extern const char kExtensionAllowedInstallSites[]; |
| 494 extern const char kExtensionInstallAllowList[]; | 495 extern const char kExtensionInstallAllowList[]; |
| 495 extern const char kExtensionInstallDenyList[]; | 496 extern const char kExtensionInstallDenyList[]; |
| 496 | |
| 497 extern const char kExtensionAlertsInitializedPref[]; | 497 extern const char kExtensionAlertsInitializedPref[]; |
| 498 | |
| 499 extern const char kExtensionInstallForceList[]; | 498 extern const char kExtensionInstallForceList[]; |
| 500 | |
| 501 extern const char kExtensionBlacklistUpdateVersion[]; | 499 extern const char kExtensionBlacklistUpdateVersion[]; |
| 502 | 500 |
| 503 extern const char kNtpTipsResourceServer[]; | 501 extern const char kNtpTipsResourceServer[]; |
| 504 | 502 |
| 505 extern const char kNtp4IntroDisplayCount[]; | 503 extern const char kNtp4IntroDisplayCount[]; |
| 506 extern const char kNtpCollapsedForeignSessions[]; | 504 extern const char kNtpCollapsedForeignSessions[]; |
| 507 extern const char kNtpMostVisitedURLsBlacklist[]; | 505 extern const char kNtpMostVisitedURLsBlacklist[]; |
| 508 extern const char kNtpPromoResourceCache[]; | 506 extern const char kNtpPromoResourceCache[]; |
| 509 extern const char kNtpPromoResourceCacheUpdate[]; | 507 extern const char kNtpPromoResourceCacheUpdate[]; |
| 510 extern const char kNtpPromoResourceServer[]; | 508 extern const char kNtpPromoResourceServer[]; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 #endif | 718 #endif |
| 721 | 719 |
| 722 extern const char kInManagedMode[]; | 720 extern const char kInManagedMode[]; |
| 723 | 721 |
| 724 extern const char kNetworkProfileWarningsLeft[]; | 722 extern const char kNetworkProfileWarningsLeft[]; |
| 725 extern const char kNetworkProfileLastWarningTime[]; | 723 extern const char kNetworkProfileLastWarningTime[]; |
| 726 | 724 |
| 727 } // namespace prefs | 725 } // namespace prefs |
| 728 | 726 |
| 729 #endif // CHROME_COMMON_PREF_NAMES_H_ | 727 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |