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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 extern const char kDefaultVideoCaptureDevice[]; | 635 extern const char kDefaultVideoCaptureDevice[]; |
636 extern const char kMediaDeviceIdSalt[]; | 636 extern const char kMediaDeviceIdSalt[]; |
637 | 637 |
638 extern const char kRemoteAccessHostFirewallTraversal[]; | 638 extern const char kRemoteAccessHostFirewallTraversal[]; |
639 extern const char kRemoteAccessHostRequireTwoFactor[]; | 639 extern const char kRemoteAccessHostRequireTwoFactor[]; |
640 extern const char kRemoteAccessHostDomain[]; | 640 extern const char kRemoteAccessHostDomain[]; |
641 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 641 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
642 extern const char kRemoteAccessHostRequireCurtain[]; | 642 extern const char kRemoteAccessHostRequireCurtain[]; |
643 extern const char kRemoteAccessHostAllowClientPairing[]; | 643 extern const char kRemoteAccessHostAllowClientPairing[]; |
644 extern const char kRemoteAccessHostAllowGnubbyAuth[]; | 644 extern const char kRemoteAccessHostAllowGnubbyAuth[]; |
| 645 extern const char kRemoteAccessHostAllowRelayedConnection[]; |
| 646 extern const char kRemoteAccessHostUdpPortRange[]; |
645 | 647 |
646 extern const char kPrintPreviewStickySettings[]; | 648 extern const char kPrintPreviewStickySettings[]; |
647 extern const char kCloudPrintRoot[]; | 649 extern const char kCloudPrintRoot[]; |
648 extern const char kCloudPrintServiceURL[]; | 650 extern const char kCloudPrintServiceURL[]; |
649 extern const char kCloudPrintSigninURL[]; | 651 extern const char kCloudPrintSigninURL[]; |
650 extern const char kCloudPrintDialogWidth[]; | 652 extern const char kCloudPrintDialogWidth[]; |
651 extern const char kCloudPrintDialogHeight[]; | 653 extern const char kCloudPrintDialogHeight[]; |
652 extern const char kCloudPrintSigninDialogWidth[]; | 654 extern const char kCloudPrintSigninDialogWidth[]; |
653 extern const char kCloudPrintSigninDialogHeight[]; | 655 extern const char kCloudPrintSigninDialogHeight[]; |
654 extern const char kCloudPrintProxyEnabled[]; | 656 extern const char kCloudPrintProxyEnabled[]; |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 | 909 |
908 #if defined(OS_ANDROID) | 910 #if defined(OS_ANDROID) |
909 extern const char kPartnerBookmarkMappings[]; | 911 extern const char kPartnerBookmarkMappings[]; |
910 #endif | 912 #endif |
911 | 913 |
912 extern const char kQuickCheckEnabled[]; | 914 extern const char kQuickCheckEnabled[]; |
913 | 915 |
914 } // namespace prefs | 916 } // namespace prefs |
915 | 917 |
916 #endif // CHROME_COMMON_PREF_NAMES_H_ | 918 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |