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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 kNtpTipsResourceServer[]; | 570 extern const char kNtpTipsResourceServer[]; |
571 | 571 |
572 extern const char kNtpCollapsedForeignSessions[]; | 572 extern const char kNtpCollapsedForeignSessions[]; |
| 573 extern const char kNtpCollapsedSnapshotDocument[]; |
| 574 extern const char kNtpCollapsedRecentlyClosedTabs[]; |
| 575 extern const char kNtpCollapsedSyncPromo[]; |
573 extern const char kNtpMostVisitedURLsBlacklist[]; | 576 extern const char kNtpMostVisitedURLsBlacklist[]; |
574 extern const char kNtpPromoResourceCacheUpdate[]; | 577 extern const char kNtpPromoResourceCacheUpdate[]; |
575 extern const char kNtpDateResourceServer[]; | 578 extern const char kNtpDateResourceServer[]; |
576 extern const char kNtpShownBookmarksFolder[]; | 579 extern const char kNtpShownBookmarksFolder[]; |
577 extern const char kNtpShownPage[]; | 580 extern const char kNtpShownPage[]; |
578 extern const char kNtpPromoDesktopSessionFound[]; | 581 extern const char kNtpPromoDesktopSessionFound[]; |
579 extern const char kNtpWebStoreEnabled[]; | 582 extern const char kNtpWebStoreEnabled[]; |
580 extern const char kNtpAppPageNames[]; | 583 extern const char kNtpAppPageNames[]; |
581 | 584 |
582 extern const char kDevToolsAdbKey[]; | 585 extern const char kDevToolsAdbKey[]; |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 | 925 |
923 extern const char kWatchdogExtensionActive[]; | 926 extern const char kWatchdogExtensionActive[]; |
924 | 927 |
925 extern const char kProfilePreferenceHashes[]; | 928 extern const char kProfilePreferenceHashes[]; |
926 | 929 |
927 extern const char kNetworkTimeMapping[]; | 930 extern const char kNetworkTimeMapping[]; |
928 | 931 |
929 } // namespace prefs | 932 } // namespace prefs |
930 | 933 |
931 #endif // CHROME_COMMON_PREF_NAMES_H_ | 934 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |