| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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[]; | 530 extern const char kNtpPromoStart[]; |
| 531 extern const char kNtpPromoEnd[]; | 531 extern const char kNtpPromoEnd[]; |
| 532 extern const char kNtpPromoLine[]; | 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[]; | 533 extern const char kNtpPromoClosed[]; |
| 539 extern const char kNtpPromoGroup[]; | 534 extern const char kNtpPromoGroup[]; |
| 540 extern const char kNtpPromoNumGroups[]; | 535 extern const char kNtpPromoNumGroups[]; |
| 541 extern const char kNtpPromoInitialSegment[]; | 536 extern const char kNtpPromoInitialSegment[]; |
| 542 extern const char kNtpPromoIncrement[]; | 537 extern const char kNtpPromoIncrement[]; |
| 543 extern const char kNtpPromoGroupTimeSlice[]; | 538 extern const char kNtpPromoGroupTimeSlice[]; |
| 544 extern const char kNtpPromoGroupMax[]; | 539 extern const char kNtpPromoGroupMax[]; |
| 545 extern const char kNtpPromoViews[]; | 540 extern const char kNtpPromoViews[]; |
| 546 extern const char kNtpPromoViewsMax[]; | 541 extern const char kNtpPromoViewsMax[]; |
| 547 extern const char kNtpPromoPlatform[]; | 542 extern const char kNtpPromoPlatform[]; |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 #endif | 743 #endif |
| 749 | 744 |
| 750 extern const char kInManagedMode[]; | 745 extern const char kInManagedMode[]; |
| 751 | 746 |
| 752 extern const char kNetworkProfileWarningsLeft[]; | 747 extern const char kNetworkProfileWarningsLeft[]; |
| 753 extern const char kNetworkProfileLastWarningTime[]; | 748 extern const char kNetworkProfileLastWarningTime[]; |
| 754 | 749 |
| 755 } // namespace prefs | 750 } // namespace prefs |
| 756 | 751 |
| 757 #endif // CHROME_COMMON_PREF_NAMES_H_ | 752 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |