| 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 extern const char kDevToolsOpenDocked[]; | 585 extern const char kDevToolsOpenDocked[]; |
| 586 extern const char kDevToolsPortForwardingEnabled[]; | 586 extern const char kDevToolsPortForwardingEnabled[]; |
| 587 extern const char kDevToolsPortForwardingDefaultSet[]; | 587 extern const char kDevToolsPortForwardingDefaultSet[]; |
| 588 extern const char kDevToolsPortForwardingConfig[]; | 588 extern const char kDevToolsPortForwardingConfig[]; |
| 589 #if defined(OS_ANDROID) | 589 #if defined(OS_ANDROID) |
| 590 extern const char kDevToolsRemoteEnabled[]; | 590 extern const char kDevToolsRemoteEnabled[]; |
| 591 #endif | 591 #endif |
| 592 | 592 |
| 593 extern const char kGoogleServicesPasswordHash[]; | 593 extern const char kGoogleServicesPasswordHash[]; |
| 594 | 594 |
| 595 extern const char kInvalidatorClientId[]; | |
| 596 extern const char kInvalidatorInvalidationState[]; | |
| 597 extern const char kInvalidatorSavedInvalidations[]; | |
| 598 extern const char kInvalidationServiceUseGCMChannel[]; | 595 extern const char kInvalidationServiceUseGCMChannel[]; |
| 599 | 596 |
| 600 extern const char kSignInPromoStartupCount[]; | 597 extern const char kSignInPromoStartupCount[]; |
| 601 extern const char kSignInPromoUserSkipped[]; | 598 extern const char kSignInPromoUserSkipped[]; |
| 602 extern const char kSignInPromoShowOnFirstRunAllowed[]; | 599 extern const char kSignInPromoShowOnFirstRunAllowed[]; |
| 603 extern const char kSignInPromoShowNTPBubble[]; | 600 extern const char kSignInPromoShowNTPBubble[]; |
| 604 | 601 |
| 605 extern const char kWebAppCreateOnDesktop[]; | 602 extern const char kWebAppCreateOnDesktop[]; |
| 606 extern const char kWebAppCreateInAppsMenu[]; | 603 extern const char kWebAppCreateInAppsMenu[]; |
| 607 extern const char kWebAppCreateInQuickLaunchBar[]; | 604 extern const char kWebAppCreateInQuickLaunchBar[]; |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 | 875 |
| 879 #if defined(OS_ANDROID) | 876 #if defined(OS_ANDROID) |
| 880 extern const char kPartnerBookmarkMappings[]; | 877 extern const char kPartnerBookmarkMappings[]; |
| 881 #endif | 878 #endif |
| 882 | 879 |
| 883 extern const char kQuickCheckEnabled[]; | 880 extern const char kQuickCheckEnabled[]; |
| 884 | 881 |
| 885 } // namespace prefs | 882 } // namespace prefs |
| 886 | 883 |
| 887 #endif // CHROME_COMMON_PREF_NAMES_H_ | 884 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |