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 1915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1926 "remote_access.host_talkgadget_prefix"; | 1926 "remote_access.host_talkgadget_prefix"; |
1927 | 1927 |
1928 // Boolean controlling whether curtaining is required when connecting to a host. | 1928 // Boolean controlling whether curtaining is required when connecting to a host. |
1929 const char kRemoteAccessHostRequireCurtain[] = | 1929 const char kRemoteAccessHostRequireCurtain[] = |
1930 "remote_access.host_require_curtain"; | 1930 "remote_access.host_require_curtain"; |
1931 | 1931 |
1932 // Boolean controlling whether curtaining is required when connecting to a host. | 1932 // Boolean controlling whether curtaining is required when connecting to a host. |
1933 const char kRemoteAccessHostAllowClientPairing[] = | 1933 const char kRemoteAccessHostAllowClientPairing[] = |
1934 "remote_access.host_allow_client_pairing"; | 1934 "remote_access.host_allow_client_pairing"; |
1935 | 1935 |
1936 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. | |
1937 const char kRemoteAccessAllowGnubbyAuth[] = | |
Sergey Ulanov
2014/01/25 02:03:33
I don't think you need this.
psj
2014/01/29 09:07:15
Same as before - other remoting policies are here.
| |
1938 "remote_access.host_allow_gnubby_auth"; | |
1939 | |
1936 // The last used printer and its settings. | 1940 // The last used printer and its settings. |
1937 const char kPrintPreviewStickySettings[] = | 1941 const char kPrintPreviewStickySettings[] = |
1938 "printing.print_preview_sticky_settings"; | 1942 "printing.print_preview_sticky_settings"; |
1939 // The root URL of the cloud print service. | 1943 // The root URL of the cloud print service. |
1940 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1944 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
1941 | 1945 |
1942 // The URL to use to sign in to cloud print. | 1946 // The URL to use to sign in to cloud print. |
1943 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1947 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
1944 | 1948 |
1945 // The last requested size of the dialog as it was closed. | 1949 // The last requested size of the dialog as it was closed. |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2626 | 2630 |
2627 // The number of seconds since epoch that the OS password was last changed. | 2631 // The number of seconds since epoch that the OS password was last changed. |
2628 const char kOsPasswordLastChanged[] = | 2632 const char kOsPasswordLastChanged[] = |
2629 "password_manager.os_password_last_changed"; | 2633 "password_manager.os_password_last_changed"; |
2630 #endif | 2634 #endif |
2631 | 2635 |
2632 // Whether DNS Quick Check is disabled in proxy resolution. | 2636 // Whether DNS Quick Check is disabled in proxy resolution. |
2633 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2637 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2634 | 2638 |
2635 } // namespace prefs | 2639 } // namespace prefs |
OLD | NEW |