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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 extern const char kSyncSessionsGUID[]; | 599 extern const char kSyncSessionsGUID[]; |
600 | 600 |
601 extern const char kInvalidatorInvalidationState[]; | 601 extern const char kInvalidatorInvalidationState[]; |
602 extern const char kInvalidatorMaxInvalidationVersions[]; | 602 extern const char kInvalidatorMaxInvalidationVersions[]; |
603 | 603 |
604 extern const char kSyncPromoStartupCount[]; | 604 extern const char kSyncPromoStartupCount[]; |
605 extern const char kSyncPromoViewCount[]; | 605 extern const char kSyncPromoViewCount[]; |
606 extern const char kSyncPromoUserSkipped[]; | 606 extern const char kSyncPromoUserSkipped[]; |
607 extern const char kSyncPromoShowOnFirstRunAllowed[]; | 607 extern const char kSyncPromoShowOnFirstRunAllowed[]; |
608 extern const char kSyncPromoShowNTPBubble[]; | 608 extern const char kSyncPromoShowNTPBubble[]; |
| 609 extern const char kSyncPromoErrorMessage[]; |
609 | 610 |
610 extern const char kProfileGAIAInfoUpdateTime[]; | 611 extern const char kProfileGAIAInfoUpdateTime[]; |
611 extern const char kProfileGAIAInfoPictureURL[]; | 612 extern const char kProfileGAIAInfoPictureURL[]; |
612 | 613 |
613 extern const char kWebAppCreateOnDesktop[]; | 614 extern const char kWebAppCreateOnDesktop[]; |
614 extern const char kWebAppCreateInAppsMenu[]; | 615 extern const char kWebAppCreateInAppsMenu[]; |
615 extern const char kWebAppCreateInQuickLaunchBar[]; | 616 extern const char kWebAppCreateInQuickLaunchBar[]; |
616 | 617 |
617 extern const char kGeolocationAccessToken[]; | 618 extern const char kGeolocationAccessToken[]; |
618 #if defined(OS_ANDROID) | 619 #if defined(OS_ANDROID) |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 extern const char kInManagedMode[]; | 794 extern const char kInManagedMode[]; |
794 | 795 |
795 extern const char kNetworkProfileWarningsLeft[]; | 796 extern const char kNetworkProfileWarningsLeft[]; |
796 extern const char kNetworkProfileLastWarningTime[]; | 797 extern const char kNetworkProfileLastWarningTime[]; |
797 | 798 |
798 extern const char kLastPolicyStatisticsUpdate[]; | 799 extern const char kLastPolicyStatisticsUpdate[]; |
799 | 800 |
800 } // namespace prefs | 801 } // namespace prefs |
801 | 802 |
802 #endif // CHROME_COMMON_PREF_NAMES_H_ | 803 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |