| 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 extern const char kNtpPromoResourceCache[]; | 520 extern const char kNtpPromoResourceCache[]; |
| 521 extern const char kNtpPromoResourceCacheUpdate[]; | 521 extern const char kNtpPromoResourceCacheUpdate[]; |
| 522 extern const char kNtpPromoResourceServer[]; | 522 extern const char kNtpPromoResourceServer[]; |
| 523 extern const char kNtpDateResourceServer[]; | 523 extern const char kNtpDateResourceServer[]; |
| 524 extern const char kNtpShownBookmarksFolder[]; | 524 extern const char kNtpShownBookmarksFolder[]; |
| 525 extern const char kNtpShownPage[]; | 525 extern const char kNtpShownPage[]; |
| 526 extern const char kNtpCustomLogoStart[]; | 526 extern const char kNtpCustomLogoStart[]; |
| 527 extern const char kNtpCustomLogoEnd[]; | 527 extern const char kNtpCustomLogoEnd[]; |
| 528 extern const char kNtpPromoVersion[]; | 528 extern const char kNtpPromoVersion[]; |
| 529 extern const char kNtpPromoLocale[]; | 529 extern const char kNtpPromoLocale[]; |
| 530 extern const char kNtpPromoStart[]; | |
| 531 extern const char kNtpPromoEnd[]; | |
| 532 extern const char kNtpPromoLine[]; | |
| 533 #if defined(OS_ANDROID) | |
| 534 extern const char kNtpPromoLineLong[]; | |
| 535 extern const char kNtpPromoActionType[]; | |
| 536 extern const char kNtpPromoActionArgs[]; | |
| 537 #endif // defined(OS_ANDROID) | |
| 538 extern const char kNtpPromoClosed[]; | |
| 539 extern const char kNtpPromoGroup[]; | |
| 540 extern const char kNtpPromoNumGroups[]; | |
| 541 extern const char kNtpPromoInitialSegment[]; | |
| 542 extern const char kNtpPromoIncrement[]; | |
| 543 extern const char kNtpPromoGroupTimeSlice[]; | |
| 544 extern const char kNtpPromoGroupMax[]; | |
| 545 extern const char kNtpPromoViews[]; | |
| 546 extern const char kNtpPromoViewsMax[]; | |
| 547 extern const char kNtpPromoPlatform[]; | |
| 548 extern const char kNtpPromoBuild[]; | |
| 549 extern const char kNtpPromoGplusRequired[]; | |
| 550 extern const char kNtpWebStoreEnabled[]; | 530 extern const char kNtpWebStoreEnabled[]; |
| 551 extern const char kNtpAppPageNames[]; | 531 extern const char kNtpAppPageNames[]; |
| 552 | 532 |
| 553 extern const char kDevToolsDisabled[]; | 533 extern const char kDevToolsDisabled[]; |
| 554 extern const char kDevToolsOpenDocked[]; | 534 extern const char kDevToolsOpenDocked[]; |
| 555 extern const char kDevToolsDockSide[]; | 535 extern const char kDevToolsDockSide[]; |
| 556 extern const char kDevToolsHSplitLocation[]; | 536 extern const char kDevToolsHSplitLocation[]; |
| 557 extern const char kDevToolsVSplitLocation[]; | 537 extern const char kDevToolsVSplitLocation[]; |
| 558 extern const char kDevToolsEditedFiles[]; | 538 extern const char kDevToolsEditedFiles[]; |
| 559 | 539 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 #endif | 727 #endif |
| 748 | 728 |
| 749 extern const char kInManagedMode[]; | 729 extern const char kInManagedMode[]; |
| 750 | 730 |
| 751 extern const char kNetworkProfileWarningsLeft[]; | 731 extern const char kNetworkProfileWarningsLeft[]; |
| 752 extern const char kNetworkProfileLastWarningTime[]; | 732 extern const char kNetworkProfileLastWarningTime[]; |
| 753 | 733 |
| 754 } // namespace prefs | 734 } // namespace prefs |
| 755 | 735 |
| 756 #endif // CHROME_COMMON_PREF_NAMES_H_ | 736 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |