| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 | 501 |
| 502 extern const char kExtensionAllowedInstallSites[]; | 502 extern const char kExtensionAllowedInstallSites[]; |
| 503 extern const char kExtensionInstallAllowList[]; | 503 extern const char kExtensionInstallAllowList[]; |
| 504 extern const char kExtensionInstallDenyList[]; | 504 extern const char kExtensionInstallDenyList[]; |
| 505 extern const char kExtensionAlertsInitializedPref[]; | 505 extern const char kExtensionAlertsInitializedPref[]; |
| 506 extern const char kExtensionInstallForceList[]; | 506 extern const char kExtensionInstallForceList[]; |
| 507 extern const char kExtensionBlacklistUpdateVersion[]; | 507 extern const char kExtensionBlacklistUpdateVersion[]; |
| 508 | 508 |
| 509 extern const char kNtpTipsResourceServer[]; | 509 extern const char kNtpTipsResourceServer[]; |
| 510 | 510 |
| 511 extern const char kNtp4IntroDisplayCount[]; | |
| 512 extern const char kNtpCollapsedForeignSessions[]; | 511 extern const char kNtpCollapsedForeignSessions[]; |
| 513 extern const char kNtpMostVisitedURLsBlacklist[]; | 512 extern const char kNtpMostVisitedURLsBlacklist[]; |
| 514 extern const char kNtpPromoResourceCache[]; | 513 extern const char kNtpPromoResourceCache[]; |
| 515 extern const char kNtpPromoResourceCacheUpdate[]; | 514 extern const char kNtpPromoResourceCacheUpdate[]; |
| 516 extern const char kNtpPromoResourceServer[]; | 515 extern const char kNtpPromoResourceServer[]; |
| 517 extern const char kNtpDateResourceServer[]; | 516 extern const char kNtpDateResourceServer[]; |
| 518 extern const char kNtpShownBookmarksFolder[]; | 517 extern const char kNtpShownBookmarksFolder[]; |
| 519 extern const char kNtpShownPage[]; | 518 extern const char kNtpShownPage[]; |
| 520 extern const char kNtpCustomLogoStart[]; | 519 extern const char kNtpCustomLogoStart[]; |
| 521 extern const char kNtpCustomLogoEnd[]; | 520 extern const char kNtpCustomLogoEnd[]; |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 extern const char kNetworkProfileWarningsLeft[]; | 732 extern const char kNetworkProfileWarningsLeft[]; |
| 734 extern const char kNetworkProfileLastWarningTime[]; | 733 extern const char kNetworkProfileLastWarningTime[]; |
| 735 | 734 |
| 736 #if defined(OS_MACOSX) | 735 #if defined(OS_MACOSX) |
| 737 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 736 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 738 #endif // defined(OS_MACOSX) | 737 #endif // defined(OS_MACOSX) |
| 739 | 738 |
| 740 } // namespace prefs | 739 } // namespace prefs |
| 741 | 740 |
| 742 #endif // CHROME_COMMON_PREF_NAMES_H_ | 741 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |