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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 extern const char kDevToolsPortForwardingConfig[]; | 595 extern const char kDevToolsPortForwardingConfig[]; |
596 #if defined(OS_ANDROID) | 596 #if defined(OS_ANDROID) |
597 extern const char kDevToolsRemoteEnabled[]; | 597 extern const char kDevToolsRemoteEnabled[]; |
598 #endif | 598 #endif |
599 #if defined(OS_ANDROID) || defined(OS_IOS) | 599 #if defined(OS_ANDROID) || defined(OS_IOS) |
600 // Used by Chrome Mobile. | 600 // Used by Chrome Mobile. |
601 extern const char kSpdyProxyAuthEnabled[]; | 601 extern const char kSpdyProxyAuthEnabled[]; |
602 extern const char kSpdyProxyAuthWasEnabledBefore[]; | 602 extern const char kSpdyProxyAuthWasEnabledBefore[]; |
603 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 603 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
604 | 604 |
605 extern const char kGoogleServicesUserAccountId[]; | |
606 extern const char kGoogleServicesUsernamePattern[]; | 605 extern const char kGoogleServicesUsernamePattern[]; |
607 extern const char kGoogleServicesPasswordHash[]; | 606 extern const char kGoogleServicesPasswordHash[]; |
608 | 607 |
609 extern const char kInvalidatorClientId[]; | 608 extern const char kInvalidatorClientId[]; |
610 extern const char kInvalidatorInvalidationState[]; | 609 extern const char kInvalidatorInvalidationState[]; |
611 extern const char kInvalidatorSavedInvalidations[]; | 610 extern const char kInvalidatorSavedInvalidations[]; |
612 extern const char kInvalidationServiceUseGCMChannel[]; | 611 extern const char kInvalidationServiceUseGCMChannel[]; |
613 | 612 |
614 extern const char kSignInPromoStartupCount[]; | 613 extern const char kSignInPromoStartupCount[]; |
615 extern const char kSignInPromoUserSkipped[]; | 614 extern const char kSignInPromoUserSkipped[]; |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
906 | 905 |
907 #if defined(OS_ANDROID) | 906 #if defined(OS_ANDROID) |
908 extern const char kPartnerBookmarkMappings[]; | 907 extern const char kPartnerBookmarkMappings[]; |
909 #endif | 908 #endif |
910 | 909 |
911 extern const char kQuickCheckEnabled[]; | 910 extern const char kQuickCheckEnabled[]; |
912 | 911 |
913 } // namespace prefs | 912 } // namespace prefs |
914 | 913 |
915 #endif // CHROME_COMMON_PREF_NAMES_H_ | 914 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |