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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 #endif | 588 #endif |
589 | 589 |
590 #if defined(ENABLE_GOOGLE_NOW) | 590 #if defined(ENABLE_GOOGLE_NOW) |
591 extern const char kGoogleGeolocationAccessEnabled[]; | 591 extern const char kGoogleGeolocationAccessEnabled[]; |
592 #endif | 592 #endif |
593 | 593 |
594 extern const char kDefaultAudioCaptureDevice[]; | 594 extern const char kDefaultAudioCaptureDevice[]; |
595 extern const char kDefaultVideoCaptureDevice[]; | 595 extern const char kDefaultVideoCaptureDevice[]; |
596 extern const char kMediaDeviceIdSalt[]; | 596 extern const char kMediaDeviceIdSalt[]; |
597 | 597 |
598 extern const char kRemoteAccessHostFirewallTraversal[]; | |
599 extern const char kRemoteAccessHostRequireTwoFactor[]; | |
600 extern const char kRemoteAccessHostDomain[]; | |
601 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | |
602 extern const char kRemoteAccessHostRequireCurtain[]; | |
603 extern const char kRemoteAccessHostAllowClientPairing[]; | |
604 extern const char kRemoteAccessHostAllowGnubbyAuth[]; | |
605 extern const char kRemoteAccessHostAllowRelayedConnection[]; | |
606 extern const char kRemoteAccessHostUdpPortRange[]; | |
607 | |
608 extern const char kPrintPreviewStickySettings[]; | 598 extern const char kPrintPreviewStickySettings[]; |
609 extern const char kCloudPrintRoot[]; | 599 extern const char kCloudPrintRoot[]; |
610 extern const char kCloudPrintDialogWidth[]; | 600 extern const char kCloudPrintDialogWidth[]; |
611 extern const char kCloudPrintDialogHeight[]; | 601 extern const char kCloudPrintDialogHeight[]; |
612 extern const char kCloudPrintSigninDialogWidth[]; | 602 extern const char kCloudPrintSigninDialogWidth[]; |
613 extern const char kCloudPrintSigninDialogHeight[]; | 603 extern const char kCloudPrintSigninDialogHeight[]; |
614 extern const char kCloudPrintProxyEnabled[]; | 604 extern const char kCloudPrintProxyEnabled[]; |
615 extern const char kCloudPrintProxyId[]; | 605 extern const char kCloudPrintProxyId[]; |
616 extern const char kCloudPrintAuthToken[]; | 606 extern const char kCloudPrintAuthToken[]; |
617 extern const char kCloudPrintXMPPAuthToken[]; | 607 extern const char kCloudPrintXMPPAuthToken[]; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 | 807 |
818 extern const char kPasswordBubbleTimeStamp[]; | 808 extern const char kPasswordBubbleTimeStamp[]; |
819 extern const char kPasswordBubbleNopesCount[]; | 809 extern const char kPasswordBubbleNopesCount[]; |
820 extern const char kPasswordBubbleLastInteractions[]; | 810 extern const char kPasswordBubbleLastInteractions[]; |
821 | 811 |
822 extern const char kRecoveryComponentNeedsElevation[]; | 812 extern const char kRecoveryComponentNeedsElevation[]; |
823 | 813 |
824 } // namespace prefs | 814 } // namespace prefs |
825 | 815 |
826 #endif // CHROME_COMMON_PREF_NAMES_H_ | 816 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |