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 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 extern const char kWebAppCreateInQuickLaunchBar[]; | 611 extern const char kWebAppCreateInQuickLaunchBar[]; |
612 | 612 |
613 extern const char kGeolocationAccessToken[]; | 613 extern const char kGeolocationAccessToken[]; |
614 extern const char kGeolocationDefaultContentSetting[]; | 614 extern const char kGeolocationDefaultContentSetting[]; |
615 extern const char kGeolocationContentSettings[]; | 615 extern const char kGeolocationContentSettings[]; |
616 #if defined(OS_ANDROID) | 616 #if defined(OS_ANDROID) |
617 extern const char kGeolocationEnabled[]; | 617 extern const char kGeolocationEnabled[]; |
618 #endif | 618 #endif |
619 | 619 |
620 extern const char kRemoteAccessHostFirewallTraversal[]; | 620 extern const char kRemoteAccessHostFirewallTraversal[]; |
| 621 extern const char kRemoteAccessHostRequireTwoFactor[]; |
| 622 extern const char kRemoteAccessHostDomain[]; |
| 623 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
621 | 624 |
622 extern const char kPrintPreviewStickySettings[]; | 625 extern const char kPrintPreviewStickySettings[]; |
623 extern const char kCloudPrintServiceURL[]; | 626 extern const char kCloudPrintServiceURL[]; |
624 extern const char kCloudPrintSigninURL[]; | 627 extern const char kCloudPrintSigninURL[]; |
625 extern const char kCloudPrintDialogWidth[]; | 628 extern const char kCloudPrintDialogWidth[]; |
626 extern const char kCloudPrintDialogHeight[]; | 629 extern const char kCloudPrintDialogHeight[]; |
627 extern const char kCloudPrintSigninDialogWidth[]; | 630 extern const char kCloudPrintSigninDialogWidth[]; |
628 extern const char kCloudPrintSigninDialogHeight[]; | 631 extern const char kCloudPrintSigninDialogHeight[]; |
629 extern const char kCloudPrintProxyEnabled[]; | 632 extern const char kCloudPrintProxyEnabled[]; |
630 extern const char kCloudPrintProxyId[]; | 633 extern const char kCloudPrintProxyId[]; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 extern const char kNetworkProfileWarningsLeft[]; | 757 extern const char kNetworkProfileWarningsLeft[]; |
755 extern const char kNetworkProfileLastWarningTime[]; | 758 extern const char kNetworkProfileLastWarningTime[]; |
756 | 759 |
757 #if defined(OS_MACOSX) | 760 #if defined(OS_MACOSX) |
758 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 761 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
759 #endif // defined(OS_MACOSX) | 762 #endif // defined(OS_MACOSX) |
760 | 763 |
761 } // namespace prefs | 764 } // namespace prefs |
762 | 765 |
763 #endif // CHROME_COMMON_PREF_NAMES_H_ | 766 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |