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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1660 | 1660 |
1661 // The default audio capture device used by the Media content setting. | 1661 // The default audio capture device used by the Media content setting. |
1662 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; | 1662 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; |
1663 | 1663 |
1664 // The default video capture device used by the Media content setting. | 1664 // The default video capture device used by the Media content setting. |
1665 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1665 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
1666 | 1666 |
1667 // The salt used for creating random MediaSource IDs. | 1667 // The salt used for creating random MediaSource IDs. |
1668 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; | 1668 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; |
1669 | 1669 |
1670 // Boolean that indicates whether to allow firewall traversal while trying to | |
1671 // establish the initial connection from the client or host. | |
1672 const char kRemoteAccessHostFirewallTraversal[] = | |
1673 "remote_access.host_firewall_traversal"; | |
1674 | |
1675 // Boolean controlling whether 2-factor auth should be required when connecting | |
1676 // to a host (instead of a PIN). | |
1677 const char kRemoteAccessHostRequireTwoFactor[] = | |
1678 "remote_access.host_require_two_factor"; | |
1679 | |
1680 // String containing the domain name that hosts must belong to. If blank, then | |
1681 // hosts can belong to any domain. | |
1682 const char kRemoteAccessHostDomain[] = "remote_access.host_domain"; | |
1683 | |
1684 // String containing the domain name of the Chromoting Directory. | |
1685 // Used by Chromoting host and client. | |
1686 const char kRemoteAccessHostTalkGadgetPrefix[] = | |
1687 "remote_access.host_talkgadget_prefix"; | |
1688 | |
1689 // Boolean controlling whether curtaining is required when connecting to a host. | |
1690 const char kRemoteAccessHostRequireCurtain[] = | |
1691 "remote_access.host_require_curtain"; | |
1692 | |
1693 // Boolean controlling whether curtaining is required when connecting to a host. | |
1694 const char kRemoteAccessHostAllowClientPairing[] = | |
1695 "remote_access.host_allow_client_pairing"; | |
1696 | |
1697 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | |
1698 const char kRemoteAccessHostAllowGnubbyAuth[] = | |
1699 "remote_access.host_allow_gnubby_auth"; | |
1700 | |
1701 // Boolean that indicates whether the Chromoting host should allow connections | |
1702 // using relay servers. | |
1703 const char kRemoteAccessHostAllowRelayedConnection[] = | |
1704 "remote_access.host_allow_relayed_connection"; | |
1705 | |
1706 // String containing the UDP port range that the Chromoting host should used | |
1707 // when connecting to clients. The port range should be in the form: | |
1708 // <min_port>-<max_port>. E.g. 12400-12409. | |
1709 const char kRemoteAccessHostUdpPortRange[] = | |
1710 "remote_access.host_udp_port_range"; | |
1711 | |
1712 // The last used printer and its settings. | 1670 // The last used printer and its settings. |
1713 const char kPrintPreviewStickySettings[] = | 1671 const char kPrintPreviewStickySettings[] = |
1714 "printing.print_preview_sticky_settings"; | 1672 "printing.print_preview_sticky_settings"; |
1715 | 1673 |
1716 // The last requested size of the dialog as it was closed. | 1674 // The last requested size of the dialog as it was closed. |
1717 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1675 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
1718 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1676 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
1719 const char kCloudPrintSigninDialogWidth[] = | 1677 const char kCloudPrintSigninDialogWidth[] = |
1720 "cloud_print.signin_dialog_size.width"; | 1678 "cloud_print.signin_dialog_size.width"; |
1721 const char kCloudPrintSigninDialogHeight[] = | 1679 const char kCloudPrintSigninDialogHeight[] = |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2297 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2255 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2298 | 2256 |
2299 // Last user's interaction with the password bubble. | 2257 // Last user's interaction with the password bubble. |
2300 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2258 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2301 | 2259 |
2302 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2260 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2303 const char kRecoveryComponentNeedsElevation[] = | 2261 const char kRecoveryComponentNeedsElevation[] = |
2304 "recovery_component.needs_elevation"; | 2262 "recovery_component.needs_elevation"; |
2305 | 2263 |
2306 } // namespace prefs | 2264 } // namespace prefs |
OLD | NEW |