| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 | 492 |
| 493 extern const char kDisableVideoAndChat[]; | 493 extern const char kDisableVideoAndChat[]; |
| 494 | 494 |
| 495 extern const char kDisableExtensions[]; | 495 extern const char kDisableExtensions[]; |
| 496 extern const char kDisablePluginFinder[]; | 496 extern const char kDisablePluginFinder[]; |
| 497 extern const char kBrowserActionContainerWidth[]; | 497 extern const char kBrowserActionContainerWidth[]; |
| 498 | 498 |
| 499 extern const char kLastExtensionsUpdateCheck[]; | 499 extern const char kLastExtensionsUpdateCheck[]; |
| 500 extern const char kNextExtensionsUpdateCheck[]; | 500 extern const char kNextExtensionsUpdateCheck[]; |
| 501 | 501 |
| 502 extern const char kExtensionAllowedInstallSites[]; |
| 502 extern const char kExtensionInstallAllowList[]; | 503 extern const char kExtensionInstallAllowList[]; |
| 503 extern const char kExtensionInstallDenyList[]; | 504 extern const char kExtensionInstallDenyList[]; |
| 504 | |
| 505 extern const char kExtensionAlertsInitializedPref[]; | 505 extern const char kExtensionAlertsInitializedPref[]; |
| 506 | |
| 507 extern const char kExtensionInstallForceList[]; | 506 extern const char kExtensionInstallForceList[]; |
| 508 | |
| 509 extern const char kExtensionBlacklistUpdateVersion[]; | 507 extern const char kExtensionBlacklistUpdateVersion[]; |
| 510 | 508 |
| 511 extern const char kNtpTipsResourceServer[]; | 509 extern const char kNtpTipsResourceServer[]; |
| 512 | 510 |
| 513 extern const char kNtp4IntroDisplayCount[]; | 511 extern const char kNtp4IntroDisplayCount[]; |
| 514 extern const char kNtpCollapsedForeignSessions[]; | 512 extern const char kNtpCollapsedForeignSessions[]; |
| 515 extern const char kNtpMostVisitedURLsBlacklist[]; | 513 extern const char kNtpMostVisitedURLsBlacklist[]; |
| 516 extern const char kNtpPromoResourceCache[]; | 514 extern const char kNtpPromoResourceCache[]; |
| 517 extern const char kNtpPromoResourceCacheUpdate[]; | 515 extern const char kNtpPromoResourceCacheUpdate[]; |
| 518 extern const char kNtpPromoResourceServer[]; | 516 extern const char kNtpPromoResourceServer[]; |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 #endif | 726 #endif |
| 729 | 727 |
| 730 extern const char kInManagedMode[]; | 728 extern const char kInManagedMode[]; |
| 731 | 729 |
| 732 extern const char kNetworkProfileWarningsLeft[]; | 730 extern const char kNetworkProfileWarningsLeft[]; |
| 733 extern const char kNetworkProfileLastWarningTime[]; | 731 extern const char kNetworkProfileLastWarningTime[]; |
| 734 | 732 |
| 735 } // namespace prefs | 733 } // namespace prefs |
| 736 | 734 |
| 737 #endif // CHROME_COMMON_PREF_NAMES_H_ | 735 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |