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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1712 | 1712 |
1713 // String containing the domain name that hosts must belong to. If blank, then | 1713 // String containing the domain name that hosts must belong to. If blank, then |
1714 // hosts can belong to any domain. | 1714 // hosts can belong to any domain. |
1715 const char kRemoteAccessHostDomain[] = "remote_access.host_domain"; | 1715 const char kRemoteAccessHostDomain[] = "remote_access.host_domain"; |
1716 | 1716 |
1717 // String containing the domain name of the Chromoting Directory. | 1717 // String containing the domain name of the Chromoting Directory. |
1718 // Used by Chromoting host and client. | 1718 // Used by Chromoting host and client. |
1719 const char kRemoteAccessHostTalkGadgetPrefix[] = | 1719 const char kRemoteAccessHostTalkGadgetPrefix[] = |
1720 "remote_access.host_talkgadget_prefix"; | 1720 "remote_access.host_talkgadget_prefix"; |
1721 | 1721 |
| 1722 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1723 const char kRemoteAccessHostRequireCurtain[] = |
| 1724 "remote_access.host_require_curtain"; |
| 1725 |
1722 // The last used printer and its settings. | 1726 // The last used printer and its settings. |
1723 const char kPrintPreviewStickySettings[] = | 1727 const char kPrintPreviewStickySettings[] = |
1724 "printing.print_preview_sticky_settings"; | 1728 "printing.print_preview_sticky_settings"; |
1725 // The root URL of the cloud print service. | 1729 // The root URL of the cloud print service. |
1726 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1730 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1727 | 1731 |
1728 // The URL to use to sign in to cloud print. | 1732 // The URL to use to sign in to cloud print. |
1729 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1733 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1730 | 1734 |
1731 // The last requested size of the dialog as it was closed. | 1735 // The last requested size of the dialog as it was closed. |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2028 | 2032 |
2029 // Counts how many more times the 'profile on a network share' warning should be | 2033 // Counts how many more times the 'profile on a network share' warning should be |
2030 // shown to the user before the next silence period. | 2034 // shown to the user before the next silence period. |
2031 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 2035 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
2032 // Tracks the time of the last shown warning. Used to reset | 2036 // Tracks the time of the last shown warning. Used to reset |
2033 // |network_profile.warnings_left| after a silence period. | 2037 // |network_profile.warnings_left| after a silence period. |
2034 const char kNetworkProfileLastWarningTime[] = | 2038 const char kNetworkProfileLastWarningTime[] = |
2035 "network_profile.last_warning_time"; | 2039 "network_profile.last_warning_time"; |
2036 | 2040 |
2037 } // namespace prefs | 2041 } // namespace prefs |
OLD | NEW |