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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 | 590 |
591 extern const char kRemoteAccessHostFirewallTraversal[]; | 591 extern const char kRemoteAccessHostFirewallTraversal[]; |
592 extern const char kRemoteAccessHostRequireTwoFactor[]; | 592 extern const char kRemoteAccessHostRequireTwoFactor[]; |
593 extern const char kRemoteAccessHostDomain[]; | 593 extern const char kRemoteAccessHostDomain[]; |
594 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 594 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
595 extern const char kRemoteAccessHostRequireCurtain[]; | 595 extern const char kRemoteAccessHostRequireCurtain[]; |
596 extern const char kRemoteAccessHostAllowClientPairing[]; | 596 extern const char kRemoteAccessHostAllowClientPairing[]; |
597 extern const char kRemoteAccessHostAllowGnubbyAuth[]; | 597 extern const char kRemoteAccessHostAllowGnubbyAuth[]; |
598 extern const char kRemoteAccessHostAllowRelayedConnection[]; | 598 extern const char kRemoteAccessHostAllowRelayedConnection[]; |
599 extern const char kRemoteAccessHostUdpPortRange[]; | 599 extern const char kRemoteAccessHostUdpPortRange[]; |
| 600 extern const char kRemoteAccessHostMatchUsername[]; |
| 601 extern const char kRemoteAccessHostTokenUrl[]; |
| 602 extern const char kRemoteAccessHostTokenValidationUrl[]; |
| 603 extern const char kRemoteAccessHostTokenValidationCertificateIssuer[]; |
| 604 extern const char kRemoteAccessHostDebugOverridePolicies[]; |
600 | 605 |
601 extern const char kPrintPreviewStickySettings[]; | 606 extern const char kPrintPreviewStickySettings[]; |
602 extern const char kCloudPrintRoot[]; | 607 extern const char kCloudPrintRoot[]; |
603 extern const char kCloudPrintDialogWidth[]; | 608 extern const char kCloudPrintDialogWidth[]; |
604 extern const char kCloudPrintDialogHeight[]; | 609 extern const char kCloudPrintDialogHeight[]; |
605 extern const char kCloudPrintSigninDialogWidth[]; | 610 extern const char kCloudPrintSigninDialogWidth[]; |
606 extern const char kCloudPrintSigninDialogHeight[]; | 611 extern const char kCloudPrintSigninDialogHeight[]; |
607 extern const char kCloudPrintProxyEnabled[]; | 612 extern const char kCloudPrintProxyEnabled[]; |
608 extern const char kCloudPrintProxyId[]; | 613 extern const char kCloudPrintProxyId[]; |
609 extern const char kCloudPrintAuthToken[]; | 614 extern const char kCloudPrintAuthToken[]; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 | 814 |
810 extern const char kPasswordBubbleTimeStamp[]; | 815 extern const char kPasswordBubbleTimeStamp[]; |
811 extern const char kPasswordBubbleNopesCount[]; | 816 extern const char kPasswordBubbleNopesCount[]; |
812 extern const char kPasswordBubbleLastInteractions[]; | 817 extern const char kPasswordBubbleLastInteractions[]; |
813 | 818 |
814 extern const char kRecoveryComponentNeedsElevation[]; | 819 extern const char kRecoveryComponentNeedsElevation[]; |
815 | 820 |
816 } // namespace prefs | 821 } // namespace prefs |
817 | 822 |
818 #endif // CHROME_COMMON_PREF_NAMES_H_ | 823 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |