| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 extern const char kDefaultVideoCaptureDevice[]; | 621 extern const char kDefaultVideoCaptureDevice[]; |
| 622 extern const char kMediaDeviceIdSalt[]; | 622 extern const char kMediaDeviceIdSalt[]; |
| 623 | 623 |
| 624 extern const char kRemoteAccessHostFirewallTraversal[]; | 624 extern const char kRemoteAccessHostFirewallTraversal[]; |
| 625 extern const char kRemoteAccessHostRequireTwoFactor[]; | 625 extern const char kRemoteAccessHostRequireTwoFactor[]; |
| 626 extern const char kRemoteAccessHostDomain[]; | 626 extern const char kRemoteAccessHostDomain[]; |
| 627 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 627 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
| 628 extern const char kRemoteAccessHostRequireCurtain[]; | 628 extern const char kRemoteAccessHostRequireCurtain[]; |
| 629 extern const char kRemoteAccessHostAllowClientPairing[]; | 629 extern const char kRemoteAccessHostAllowClientPairing[]; |
| 630 extern const char kRemoteAccessHostAllowGnubbyAuth[]; | 630 extern const char kRemoteAccessHostAllowGnubbyAuth[]; |
| 631 extern const char kRemoteAccessHostAllowRelayedConnection[]; | |
| 632 extern const char kRemoteAccessHostUdpPortRange[]; | |
| 633 | 631 |
| 634 extern const char kPrintPreviewStickySettings[]; | 632 extern const char kPrintPreviewStickySettings[]; |
| 635 extern const char kCloudPrintRoot[]; | 633 extern const char kCloudPrintRoot[]; |
| 636 extern const char kCloudPrintDialogWidth[]; | 634 extern const char kCloudPrintDialogWidth[]; |
| 637 extern const char kCloudPrintDialogHeight[]; | 635 extern const char kCloudPrintDialogHeight[]; |
| 638 extern const char kCloudPrintSigninDialogWidth[]; | 636 extern const char kCloudPrintSigninDialogWidth[]; |
| 639 extern const char kCloudPrintSigninDialogHeight[]; | 637 extern const char kCloudPrintSigninDialogHeight[]; |
| 640 extern const char kCloudPrintProxyEnabled[]; | 638 extern const char kCloudPrintProxyEnabled[]; |
| 641 extern const char kCloudPrintProxyId[]; | 639 extern const char kCloudPrintProxyId[]; |
| 642 extern const char kCloudPrintAuthToken[]; | 640 extern const char kCloudPrintAuthToken[]; |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 | 878 |
| 881 #if defined(OS_ANDROID) | 879 #if defined(OS_ANDROID) |
| 882 extern const char kPartnerBookmarkMappings[]; | 880 extern const char kPartnerBookmarkMappings[]; |
| 883 #endif | 881 #endif |
| 884 | 882 |
| 885 extern const char kQuickCheckEnabled[]; | 883 extern const char kQuickCheckEnabled[]; |
| 886 | 884 |
| 887 } // namespace prefs | 885 } // namespace prefs |
| 888 | 886 |
| 889 #endif // CHROME_COMMON_PREF_NAMES_H_ | 887 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |