| 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 kGoogleServicesUsernamePattern[]; | |
| 606 extern const char kGoogleServicesPasswordHash[]; | 605 extern const char kGoogleServicesPasswordHash[]; |
| 607 | 606 |
| 608 extern const char kInvalidatorClientId[]; | 607 extern const char kInvalidatorClientId[]; |
| 609 extern const char kInvalidatorInvalidationState[]; | 608 extern const char kInvalidatorInvalidationState[]; |
| 610 extern const char kInvalidatorSavedInvalidations[]; | 609 extern const char kInvalidatorSavedInvalidations[]; |
| 611 extern const char kInvalidationServiceUseGCMChannel[]; | 610 extern const char kInvalidationServiceUseGCMChannel[]; |
| 612 | 611 |
| 613 extern const char kSignInPromoStartupCount[]; | 612 extern const char kSignInPromoStartupCount[]; |
| 614 extern const char kSignInPromoUserSkipped[]; | 613 extern const char kSignInPromoUserSkipped[]; |
| 615 extern const char kSignInPromoShowOnFirstRunAllowed[]; | 614 extern const char kSignInPromoShowOnFirstRunAllowed[]; |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 | 904 |
| 906 #if defined(OS_ANDROID) | 905 #if defined(OS_ANDROID) |
| 907 extern const char kPartnerBookmarkMappings[]; | 906 extern const char kPartnerBookmarkMappings[]; |
| 908 #endif | 907 #endif |
| 909 | 908 |
| 910 extern const char kQuickCheckEnabled[]; | 909 extern const char kQuickCheckEnabled[]; |
| 911 | 910 |
| 912 } // namespace prefs | 911 } // namespace prefs |
| 913 | 912 |
| 914 #endif // CHROME_COMMON_PREF_NAMES_H_ | 913 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |