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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 | 544 |
545 extern const char kExtensionAlertsInitializedPref[]; | 545 extern const char kExtensionAlertsInitializedPref[]; |
546 extern const char kExtensionAllowedInstallSites[]; | 546 extern const char kExtensionAllowedInstallSites[]; |
547 extern const char kExtensionAllowedTypes[]; | 547 extern const char kExtensionAllowedTypes[]; |
548 extern const char kExtensionBlacklistUpdateVersion[]; | 548 extern const char kExtensionBlacklistUpdateVersion[]; |
549 extern const char kExtensionInstallAllowList[]; | 549 extern const char kExtensionInstallAllowList[]; |
550 extern const char kExtensionInstallDenyList[]; | 550 extern const char kExtensionInstallDenyList[]; |
551 extern const char kExtensionInstallForceList[]; | 551 extern const char kExtensionInstallForceList[]; |
552 extern const char kExtensionStorageGarbageCollect[]; | 552 extern const char kExtensionStorageGarbageCollect[]; |
553 | 553 |
554 extern const char kAppLauncherIsEnabled[]; | |
555 | |
556 extern const char kNtpTipsResourceServer[]; | 554 extern const char kNtpTipsResourceServer[]; |
557 | 555 |
558 extern const char kNtpCollapsedForeignSessions[]; | 556 extern const char kNtpCollapsedForeignSessions[]; |
559 extern const char kNtpMostVisitedURLsBlacklist[]; | 557 extern const char kNtpMostVisitedURLsBlacklist[]; |
560 extern const char kNtpPromoResourceCacheUpdate[]; | 558 extern const char kNtpPromoResourceCacheUpdate[]; |
561 extern const char kNtpDateResourceServer[]; | 559 extern const char kNtpDateResourceServer[]; |
562 extern const char kNtpShownBookmarksFolder[]; | 560 extern const char kNtpShownBookmarksFolder[]; |
563 extern const char kNtpShownPage[]; | 561 extern const char kNtpShownPage[]; |
564 extern const char kNtpPromoDesktopSessionFound[]; | 562 extern const char kNtpPromoDesktopSessionFound[]; |
565 extern const char kNtpWebStoreEnabled[]; | 563 extern const char kNtpWebStoreEnabled[]; |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
818 extern const char kLastPolicyStatisticsUpdate[]; | 816 extern const char kLastPolicyStatisticsUpdate[]; |
819 | 817 |
820 #if defined(OS_CHROMEOS) | 818 #if defined(OS_CHROMEOS) |
821 extern const char kRLZBrand[]; | 819 extern const char kRLZBrand[]; |
822 extern const char kRLZDisabled[]; | 820 extern const char kRLZDisabled[]; |
823 #endif | 821 #endif |
824 | 822 |
825 } // namespace prefs | 823 } // namespace prefs |
826 | 824 |
827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 825 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |