| 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 | 570 |
| 571 extern const char kInvalidationServiceUseGCMChannel[]; | 571 extern const char kInvalidationServiceUseGCMChannel[]; |
| 572 | 572 |
| 573 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 573 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 574 extern const char kSignInPromoStartupCount[]; | 574 extern const char kSignInPromoStartupCount[]; |
| 575 extern const char kSignInPromoUserSkipped[]; | 575 extern const char kSignInPromoUserSkipped[]; |
| 576 extern const char kSignInPromoShowOnFirstRunAllowed[]; | 576 extern const char kSignInPromoShowOnFirstRunAllowed[]; |
| 577 extern const char kSignInPromoShowNTPBubble[]; | 577 extern const char kSignInPromoShowNTPBubble[]; |
| 578 #endif | 578 #endif |
| 579 | 579 |
| 580 #if !defined(OS_CHROMEOS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
| 581 extern const char kCrossDevicePromoOptedOut[]; |
| 582 extern const char kCrossDevicePromoActive[]; |
| 583 extern const char kCrossDevicePromoObservedSingleAccountCookie[]; |
| 584 extern const char kCrossDevicePromoNextFetchListDevicesTime[]; |
| 585 extern const char kCrossDevicePromoNumDevices[]; |
| 586 extern const char kCrossDevicePromoLastDeviceActiveTime[]; |
| 587 #endif |
| 588 |
| 580 extern const char kWebAppCreateOnDesktop[]; | 589 extern const char kWebAppCreateOnDesktop[]; |
| 581 extern const char kWebAppCreateInAppsMenu[]; | 590 extern const char kWebAppCreateInAppsMenu[]; |
| 582 extern const char kWebAppCreateInQuickLaunchBar[]; | 591 extern const char kWebAppCreateInQuickLaunchBar[]; |
| 583 | 592 |
| 584 extern const char kGeolocationAccessToken[]; | 593 extern const char kGeolocationAccessToken[]; |
| 585 #if defined(OS_ANDROID) | 594 #if defined(OS_ANDROID) |
| 586 extern const char kGeolocationEnabled[]; | 595 extern const char kGeolocationEnabled[]; |
| 587 #endif | 596 #endif |
| 588 | 597 |
| 589 #if defined(ENABLE_GOOGLE_NOW) | 598 #if defined(ENABLE_GOOGLE_NOW) |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 | 827 |
| 819 extern const char kRegisteredSupervisedUserWhitelists[]; | 828 extern const char kRegisteredSupervisedUserWhitelists[]; |
| 820 | 829 |
| 821 #if defined(ENABLE_EXTENSIONS) | 830 #if defined(ENABLE_EXTENSIONS) |
| 822 extern const char kAnimationPolicy[]; | 831 extern const char kAnimationPolicy[]; |
| 823 #endif | 832 #endif |
| 824 | 833 |
| 825 } // namespace prefs | 834 } // namespace prefs |
| 826 | 835 |
| 827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 836 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |