| 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 | 560 |
| 561 extern const char kExtensionAlertsInitializedPref[]; | 561 extern const char kExtensionAlertsInitializedPref[]; |
| 562 extern const char kExtensionAllowedInstallSites[]; | 562 extern const char kExtensionAllowedInstallSites[]; |
| 563 extern const char kExtensionAllowedTypes[]; | 563 extern const char kExtensionAllowedTypes[]; |
| 564 extern const char kExtensionBlacklistUpdateVersion[]; | 564 extern const char kExtensionBlacklistUpdateVersion[]; |
| 565 extern const char kExtensionInstallAllowList[]; | 565 extern const char kExtensionInstallAllowList[]; |
| 566 extern const char kExtensionInstallDenyList[]; | 566 extern const char kExtensionInstallDenyList[]; |
| 567 extern const char kExtensionInstallForceList[]; | 567 extern const char kExtensionInstallForceList[]; |
| 568 extern const char kExtensionStorageGarbageCollect[]; | 568 extern const char kExtensionStorageGarbageCollect[]; |
| 569 | 569 |
| 570 extern const char kAppLauncherIsEnabled[]; | |
| 571 | |
| 572 extern const char kNtpTipsResourceServer[]; | 570 extern const char kNtpTipsResourceServer[]; |
| 573 | 571 |
| 574 extern const char kNtpCollapsedForeignSessions[]; | 572 extern const char kNtpCollapsedForeignSessions[]; |
| 575 extern const char kNtpMostVisitedURLsBlacklist[]; | 573 extern const char kNtpMostVisitedURLsBlacklist[]; |
| 576 extern const char kNtpPromoResourceCacheUpdate[]; | 574 extern const char kNtpPromoResourceCacheUpdate[]; |
| 577 extern const char kNtpDateResourceServer[]; | 575 extern const char kNtpDateResourceServer[]; |
| 578 extern const char kNtpShownBookmarksFolder[]; | 576 extern const char kNtpShownBookmarksFolder[]; |
| 579 extern const char kNtpShownPage[]; | 577 extern const char kNtpShownPage[]; |
| 580 extern const char kNtpPromoDesktopSessionFound[]; | 578 extern const char kNtpPromoDesktopSessionFound[]; |
| 581 extern const char kNtpWebStoreEnabled[]; | 579 extern const char kNtpWebStoreEnabled[]; |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 extern const char kRLZDisabled[]; | 839 extern const char kRLZDisabled[]; |
| 842 #endif | 840 #endif |
| 843 | 841 |
| 844 #if defined(ENABLE_APP_LIST) | 842 #if defined(ENABLE_APP_LIST) |
| 845 extern const char kAppListProfile[]; | 843 extern const char kAppListProfile[]; |
| 846 #endif | 844 #endif |
| 847 | 845 |
| 848 } // namespace prefs | 846 } // namespace prefs |
| 849 | 847 |
| 850 #endif // CHROME_COMMON_PREF_NAMES_H_ | 848 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |