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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 #endif | 582 #endif |
583 | 583 |
584 #if defined(ENABLE_GOOGLE_NOW) | 584 #if defined(ENABLE_GOOGLE_NOW) |
585 extern const char kGoogleGeolocationAccessEnabled[]; | 585 extern const char kGoogleGeolocationAccessEnabled[]; |
586 #endif | 586 #endif |
587 | 587 |
588 extern const char kDefaultAudioCaptureDevice[]; | 588 extern const char kDefaultAudioCaptureDevice[]; |
589 extern const char kDefaultVideoCaptureDevice[]; | 589 extern const char kDefaultVideoCaptureDevice[]; |
590 extern const char kMediaDeviceIdSalt[]; | 590 extern const char kMediaDeviceIdSalt[]; |
591 | 591 |
592 extern const char kRemoteAccessHostFirewallTraversal[]; | |
593 extern const char kRemoteAccessHostRequireTwoFactor[]; | |
594 extern const char kRemoteAccessHostDomain[]; | |
595 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | |
596 extern const char kRemoteAccessHostRequireCurtain[]; | |
597 extern const char kRemoteAccessHostAllowClientPairing[]; | |
598 extern const char kRemoteAccessHostAllowGnubbyAuth[]; | |
599 extern const char kRemoteAccessHostAllowRelayedConnection[]; | |
600 extern const char kRemoteAccessHostUdpPortRange[]; | |
601 | |
602 extern const char kPrintPreviewStickySettings[]; | 592 extern const char kPrintPreviewStickySettings[]; |
603 extern const char kCloudPrintRoot[]; | 593 extern const char kCloudPrintRoot[]; |
604 extern const char kCloudPrintDialogWidth[]; | 594 extern const char kCloudPrintDialogWidth[]; |
605 extern const char kCloudPrintDialogHeight[]; | 595 extern const char kCloudPrintDialogHeight[]; |
606 extern const char kCloudPrintSigninDialogWidth[]; | 596 extern const char kCloudPrintSigninDialogWidth[]; |
607 extern const char kCloudPrintSigninDialogHeight[]; | 597 extern const char kCloudPrintSigninDialogHeight[]; |
608 extern const char kCloudPrintProxyEnabled[]; | 598 extern const char kCloudPrintProxyEnabled[]; |
609 extern const char kCloudPrintProxyId[]; | 599 extern const char kCloudPrintProxyId[]; |
610 extern const char kCloudPrintAuthToken[]; | 600 extern const char kCloudPrintAuthToken[]; |
611 extern const char kCloudPrintXMPPAuthToken[]; | 601 extern const char kCloudPrintXMPPAuthToken[]; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 | 799 |
810 extern const char kPasswordBubbleTimeStamp[]; | 800 extern const char kPasswordBubbleTimeStamp[]; |
811 extern const char kPasswordBubbleNopesCount[]; | 801 extern const char kPasswordBubbleNopesCount[]; |
812 extern const char kPasswordBubbleLastInteractions[]; | 802 extern const char kPasswordBubbleLastInteractions[]; |
813 | 803 |
814 extern const char kRecoveryComponentNeedsElevation[]; | 804 extern const char kRecoveryComponentNeedsElevation[]; |
815 | 805 |
816 } // namespace prefs | 806 } // namespace prefs |
817 | 807 |
818 #endif // CHROME_COMMON_PREF_NAMES_H_ | 808 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |