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 #pragma once | 9 #pragma once |
10 | 10 |
11 #include <stddef.h> | 11 #include <stddef.h> |
12 | 12 |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 | 14 |
15 namespace prefs { | 15 namespace prefs { |
16 | 16 |
17 // Profile prefs. Please add Local State prefs below instead. | 17 // Profile prefs. Please add Local State prefs below instead. |
18 extern const char kAppsPromoCounter[]; | |
19 extern const char kDefaultApps[]; | 18 extern const char kDefaultApps[]; |
20 extern const char kDefaultAppsInstalled[]; | 19 extern const char kDefaultAppsInstalled[]; |
21 extern const char kHomePageIsNewTabPage[]; | 20 extern const char kHomePageIsNewTabPage[]; |
22 extern const char kHomePage[]; | 21 extern const char kHomePage[]; |
23 extern const char kHomePageChanged[]; | 22 extern const char kHomePageChanged[]; |
24 extern const char kIsGooglePlusUser[]; | 23 extern const char kIsGooglePlusUser[]; |
25 extern const char kSessionExitedCleanly[]; | 24 extern const char kSessionExitedCleanly[]; |
26 extern const char kRestoreOnStartup[]; | 25 extern const char kRestoreOnStartup[]; |
27 extern const char kURLsToRestoreOnStartup[]; | 26 extern const char kURLsToRestoreOnStartup[]; |
28 extern const char kRestoreOnStartupMigrated[]; | 27 extern const char kRestoreOnStartupMigrated[]; |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 extern const char kNtpPromoInitialSegment[]; | 530 extern const char kNtpPromoInitialSegment[]; |
532 extern const char kNtpPromoIncrement[]; | 531 extern const char kNtpPromoIncrement[]; |
533 extern const char kNtpPromoGroupTimeSlice[]; | 532 extern const char kNtpPromoGroupTimeSlice[]; |
534 extern const char kNtpPromoGroupMax[]; | 533 extern const char kNtpPromoGroupMax[]; |
535 extern const char kNtpPromoViews[]; | 534 extern const char kNtpPromoViews[]; |
536 extern const char kNtpPromoViewsMax[]; | 535 extern const char kNtpPromoViewsMax[]; |
537 extern const char kNtpPromoPlatform[]; | 536 extern const char kNtpPromoPlatform[]; |
538 extern const char kNtpPromoBuild[]; | 537 extern const char kNtpPromoBuild[]; |
539 extern const char kNtpPromoGplusRequired[]; | 538 extern const char kNtpPromoGplusRequired[]; |
540 extern const char kNtpWebStoreEnabled[]; | 539 extern const char kNtpWebStoreEnabled[]; |
541 extern const char kNtpWebStorePromoLastId[]; | |
542 extern const char kNtpWebStorePromoId[]; | |
543 extern const char kNtpWebStorePromoHeader[]; | |
544 extern const char kNtpWebStorePromoButton[]; | |
545 extern const char kNtpWebStorePromoLink[]; | |
546 extern const char kNtpWebStorePromoLogo[]; | |
547 extern const char kNtpWebStorePromoLogoSource[]; | |
548 extern const char kNtpWebStorePromoExpire[]; | |
549 extern const char kNtpWebStorePromoUserGroup[]; | |
550 extern const char kNtpAppPageNames[]; | 540 extern const char kNtpAppPageNames[]; |
551 extern const char kNtpHideWebStorePromo[]; | |
552 | 541 |
553 extern const char kDevToolsDisabled[]; | 542 extern const char kDevToolsDisabled[]; |
554 extern const char kDevToolsOpenDocked[]; | 543 extern const char kDevToolsOpenDocked[]; |
555 extern const char kDevToolsDockSide[]; | 544 extern const char kDevToolsDockSide[]; |
556 extern const char kDevToolsHSplitLocation[]; | 545 extern const char kDevToolsHSplitLocation[]; |
557 extern const char kDevToolsVSplitLocation[]; | 546 extern const char kDevToolsVSplitLocation[]; |
558 extern const char kDevToolsEditedFiles[]; | 547 extern const char kDevToolsEditedFiles[]; |
559 | 548 |
560 extern const char kSyncLastSyncedTime[]; | 549 extern const char kSyncLastSyncedTime[]; |
561 extern const char kSyncHasSetupCompleted[]; | 550 extern const char kSyncHasSetupCompleted[]; |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 extern const char kNetworkProfileWarningsLeft[]; | 727 extern const char kNetworkProfileWarningsLeft[]; |
739 extern const char kNetworkProfileLastWarningTime[]; | 728 extern const char kNetworkProfileLastWarningTime[]; |
740 | 729 |
741 #if defined(OS_MACOSX) | 730 #if defined(OS_MACOSX) |
742 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 731 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
743 #endif // defined(OS_MACOSX) | 732 #endif // defined(OS_MACOSX) |
744 | 733 |
745 } // namespace prefs | 734 } // namespace prefs |
746 | 735 |
747 #endif // CHROME_COMMON_PREF_NAMES_H_ | 736 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |