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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 extern const char kInvalidatorClientId[]; | 642 extern const char kInvalidatorClientId[]; |
643 extern const char kInvalidatorInvalidationState[]; | 643 extern const char kInvalidatorInvalidationState[]; |
644 extern const char kInvalidatorSavedInvalidations[]; | 644 extern const char kInvalidatorSavedInvalidations[]; |
645 | 645 |
646 extern const char kSignInPromoStartupCount[]; | 646 extern const char kSignInPromoStartupCount[]; |
647 extern const char kSignInPromoUserSkipped[]; | 647 extern const char kSignInPromoUserSkipped[]; |
648 extern const char kSignInPromoShowOnFirstRunAllowed[]; | 648 extern const char kSignInPromoShowOnFirstRunAllowed[]; |
649 extern const char kSignInPromoShowNTPBubble[]; | 649 extern const char kSignInPromoShowNTPBubble[]; |
650 | 650 |
651 extern const char kProfileAvatarTutorialShown[]; | 651 extern const char kProfileAvatarTutorialShown[]; |
| 652 extern const char kProfileUserManagerTutorialShown[]; |
652 | 653 |
653 extern const char kProfileGAIAInfoUpdateTime[]; | 654 extern const char kProfileGAIAInfoUpdateTime[]; |
654 extern const char kProfileGAIAInfoPictureURL[]; | 655 extern const char kProfileGAIAInfoPictureURL[]; |
655 | 656 |
656 extern const char kWebAppCreateOnDesktop[]; | 657 extern const char kWebAppCreateOnDesktop[]; |
657 extern const char kWebAppCreateInAppsMenu[]; | 658 extern const char kWebAppCreateInAppsMenu[]; |
658 extern const char kWebAppCreateInQuickLaunchBar[]; | 659 extern const char kWebAppCreateInQuickLaunchBar[]; |
659 | 660 |
660 extern const char kGeolocationAccessToken[]; | 661 extern const char kGeolocationAccessToken[]; |
661 #if defined(OS_ANDROID) | 662 #if defined(OS_ANDROID) |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
941 | 942 |
942 #if defined(OS_ANDROID) | 943 #if defined(OS_ANDROID) |
943 extern const char kPartnerBookmarkMappings[]; | 944 extern const char kPartnerBookmarkMappings[]; |
944 #endif | 945 #endif |
945 | 946 |
946 extern const char kQuickCheckEnabled[]; | 947 extern const char kQuickCheckEnabled[]; |
947 | 948 |
948 } // namespace prefs | 949 } // namespace prefs |
949 | 950 |
950 #endif // CHROME_COMMON_PREF_NAMES_H_ | 951 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |