| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 | 559 |
| 560 extern const char kExtensionAlertsInitializedPref[]; | 560 extern const char kExtensionAlertsInitializedPref[]; |
| 561 extern const char kExtensionAllowedInstallSites[]; | 561 extern const char kExtensionAllowedInstallSites[]; |
| 562 extern const char kExtensionAllowedTypes[]; | 562 extern const char kExtensionAllowedTypes[]; |
| 563 extern const char kExtensionBlacklistUpdateVersion[]; | 563 extern const char kExtensionBlacklistUpdateVersion[]; |
| 564 extern const char kExtensionInstallAllowList[]; | 564 extern const char kExtensionInstallAllowList[]; |
| 565 extern const char kExtensionInstallDenyList[]; | 565 extern const char kExtensionInstallDenyList[]; |
| 566 extern const char kExtensionInstallForceList[]; | 566 extern const char kExtensionInstallForceList[]; |
| 567 extern const char kExtensionStorageGarbageCollect[]; | 567 extern const char kExtensionStorageGarbageCollect[]; |
| 568 | 568 |
| 569 extern const char kNtpTipsResourceServer[]; | 569 extern const char kNtpAppPageNames[]; |
| 570 | |
| 571 extern const char kNtpCollapsedForeignSessions[]; | 570 extern const char kNtpCollapsedForeignSessions[]; |
| 571 extern const char kNtpCollapsedRecentlyClosedTabs[]; |
| 572 extern const char kNtpCollapsedSnapshotDocument[]; |
| 573 extern const char kNtpCollapsedSyncPromo[]; |
| 574 extern const char kNtpDateResourceServer[]; |
| 572 extern const char kNtpMostVisitedURLsBlacklist[]; | 575 extern const char kNtpMostVisitedURLsBlacklist[]; |
| 576 extern const char kNtpPromoDesktopSessionFound[]; |
| 573 extern const char kNtpPromoResourceCacheUpdate[]; | 577 extern const char kNtpPromoResourceCacheUpdate[]; |
| 574 extern const char kNtpDateResourceServer[]; | |
| 575 extern const char kNtpShownBookmarksFolder[]; | 578 extern const char kNtpShownBookmarksFolder[]; |
| 576 extern const char kNtpShownPage[]; | 579 extern const char kNtpShownPage[]; |
| 577 extern const char kNtpPromoDesktopSessionFound[]; | 580 extern const char kNtpTipsResourceServer[]; |
| 578 extern const char kNtpWebStoreEnabled[]; | 581 extern const char kNtpWebStoreEnabled[]; |
| 579 extern const char kNtpAppPageNames[]; | |
| 580 | 582 |
| 581 extern const char kDevToolsAdbKey[]; | 583 extern const char kDevToolsAdbKey[]; |
| 582 extern const char kDevToolsDisabled[]; | 584 extern const char kDevToolsDisabled[]; |
| 583 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; | 585 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; |
| 584 extern const char kDevToolsDockSide[]; | 586 extern const char kDevToolsDockSide[]; |
| 585 extern const char kDevToolsEditedFiles[]; | 587 extern const char kDevToolsEditedFiles[]; |
| 586 extern const char kDevToolsFileSystemPaths[]; | 588 extern const char kDevToolsFileSystemPaths[]; |
| 587 extern const char kDevToolsHSplitLocation[]; | 589 extern const char kDevToolsHSplitLocation[]; |
| 588 extern const char kDevToolsOpenDocked[]; | 590 extern const char kDevToolsOpenDocked[]; |
| 589 extern const char kDevToolsPortForwardingEnabled[]; | 591 extern const char kDevToolsPortForwardingEnabled[]; |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 928 | 930 |
| 929 extern const char kNetworkTimeMapping[]; | 931 extern const char kNetworkTimeMapping[]; |
| 930 | 932 |
| 931 #if defined(OS_ANDROID) | 933 #if defined(OS_ANDROID) |
| 932 extern const char kPartnerBookmarkMappings[]; | 934 extern const char kPartnerBookmarkMappings[]; |
| 933 #endif | 935 #endif |
| 934 | 936 |
| 935 } // namespace prefs | 937 } // namespace prefs |
| 936 | 938 |
| 937 #endif // CHROME_COMMON_PREF_NAMES_H_ | 939 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |