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 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1646 | 1646 |
1647 // The default audio capture device used by the Media content setting. | 1647 // The default audio capture device used by the Media content setting. |
1648 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; | 1648 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; |
1649 | 1649 |
1650 // The default video capture device used by the Media content setting. | 1650 // The default video capture device used by the Media content setting. |
1651 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1651 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
1652 | 1652 |
1653 // The salt used for creating random MediaSource IDs. | 1653 // The salt used for creating random MediaSource IDs. |
1654 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; | 1654 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; |
1655 | 1655 |
1656 // Boolean that indicates whether to allow firewall traversal while trying to | |
1657 // establish the initial connection from the client or host. | |
1658 const char kRemoteAccessHostFirewallTraversal[] = | |
1659 "remote_access.host_firewall_traversal"; | |
1660 | |
1661 // Boolean controlling whether 2-factor auth should be required when connecting | |
1662 // to a host (instead of a PIN). | |
1663 const char kRemoteAccessHostRequireTwoFactor[] = | |
1664 "remote_access.host_require_two_factor"; | |
1665 | |
1666 // String containing the domain name that hosts must belong to. If blank, then | |
1667 // hosts can belong to any domain. | |
1668 const char kRemoteAccessHostDomain[] = "remote_access.host_domain"; | |
1669 | |
1670 // String containing the domain name of the Chromoting Directory. | |
1671 // Used by Chromoting host and client. | |
1672 const char kRemoteAccessHostTalkGadgetPrefix[] = | |
1673 "remote_access.host_talkgadget_prefix"; | |
1674 | |
1675 // Boolean controlling whether curtaining is required when connecting to a host. | |
1676 const char kRemoteAccessHostRequireCurtain[] = | |
1677 "remote_access.host_require_curtain"; | |
1678 | |
1679 // Boolean controlling whether curtaining is required when connecting to a host. | |
1680 const char kRemoteAccessHostAllowClientPairing[] = | |
1681 "remote_access.host_allow_client_pairing"; | |
1682 | |
1683 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | |
1684 const char kRemoteAccessHostAllowGnubbyAuth[] = | |
1685 "remote_access.host_allow_gnubby_auth"; | |
1686 | |
1687 // Boolean that indicates whether the Chromoting host should allow connections | |
1688 // using relay servers. | |
1689 const char kRemoteAccessHostAllowRelayedConnection[] = | |
1690 "remote_access.host_allow_relayed_connection"; | |
1691 | |
1692 // String containing the UDP port range that the Chromoting host should used | |
1693 // when connecting to clients. The port range should be in the form: | |
1694 // <min_port>-<max_port>. E.g. 12400-12409. | |
1695 const char kRemoteAccessHostUdpPortRange[] = | |
1696 "remote_access.host_udp_port_range"; | |
1697 | |
1698 // The last used printer and its settings. | 1656 // The last used printer and its settings. |
1699 const char kPrintPreviewStickySettings[] = | 1657 const char kPrintPreviewStickySettings[] = |
1700 "printing.print_preview_sticky_settings"; | 1658 "printing.print_preview_sticky_settings"; |
1701 | 1659 |
1702 // The last requested size of the dialog as it was closed. | 1660 // The last requested size of the dialog as it was closed. |
1703 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; | 1661 const char kCloudPrintDialogWidth[] = "cloud_print.dialog_size.width"; |
1704 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; | 1662 const char kCloudPrintDialogHeight[] = "cloud_print.dialog_size.height"; |
1705 const char kCloudPrintSigninDialogWidth[] = | 1663 const char kCloudPrintSigninDialogWidth[] = |
1706 "cloud_print.signin_dialog_size.width"; | 1664 "cloud_print.signin_dialog_size.width"; |
1707 const char kCloudPrintSigninDialogHeight[] = | 1665 const char kCloudPrintSigninDialogHeight[] = |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2236 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2279 | 2237 |
2280 // Last user's interaction with the password bubble. | 2238 // Last user's interaction with the password bubble. |
2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2239 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2282 | 2240 |
2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2241 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2284 const char kRecoveryComponentNeedsElevation[] = | 2242 const char kRecoveryComponentNeedsElevation[] = |
2285 "recovery_component.needs_elevation"; | 2243 "recovery_component.needs_elevation"; |
2286 | 2244 |
2287 } // namespace prefs | 2245 } // namespace prefs |
OLD | NEW |