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[]; | |
Pam (message me for reviews)
2013/11/02 08:27:25
nit: alphabetize (the whole kNtp section, I notice
apiccion
2013/11/03 17:52:59
Done.
| |
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
926 | 929 |
927 extern const char kNetworkTimeMapping[]; | 930 extern const char kNetworkTimeMapping[]; |
928 | 931 |
929 #if defined(OS_ANDROID) | 932 #if defined(OS_ANDROID) |
930 extern const char kPartnerBookmarkMappings[]; | 933 extern const char kPartnerBookmarkMappings[]; |
931 #endif | 934 #endif |
932 | 935 |
933 } // namespace prefs | 936 } // namespace prefs |
934 | 937 |
935 #endif // CHROME_COMMON_PREF_NAMES_H_ | 938 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |