| 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 1927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1938 "remote_access.host_talkgadget_prefix"; | 1938 "remote_access.host_talkgadget_prefix"; |
| 1939 | 1939 |
| 1940 // Boolean controlling whether curtaining is required when connecting to a host. | 1940 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1941 const char kRemoteAccessHostRequireCurtain[] = | 1941 const char kRemoteAccessHostRequireCurtain[] = |
| 1942 "remote_access.host_require_curtain"; | 1942 "remote_access.host_require_curtain"; |
| 1943 | 1943 |
| 1944 // Boolean controlling whether curtaining is required when connecting to a host. | 1944 // Boolean controlling whether curtaining is required when connecting to a host. |
| 1945 const char kRemoteAccessHostAllowClientPairing[] = | 1945 const char kRemoteAccessHostAllowClientPairing[] = |
| 1946 "remote_access.host_allow_client_pairing"; | 1946 "remote_access.host_allow_client_pairing"; |
| 1947 | 1947 |
| 1948 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. |
| 1949 const char kRemoteAccessAllowGnubbyAuth[] = |
| 1950 "remote_access.host_allow_gnubby_auth"; |
| 1951 |
| 1948 // The last used printer and its settings. | 1952 // The last used printer and its settings. |
| 1949 const char kPrintPreviewStickySettings[] = | 1953 const char kPrintPreviewStickySettings[] = |
| 1950 "printing.print_preview_sticky_settings"; | 1954 "printing.print_preview_sticky_settings"; |
| 1951 // The root URL of the cloud print service. | 1955 // The root URL of the cloud print service. |
| 1952 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 1956 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
| 1953 | 1957 |
| 1954 // The URL to use to sign in to cloud print. | 1958 // The URL to use to sign in to cloud print. |
| 1955 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; | 1959 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; |
| 1956 | 1960 |
| 1957 // The last requested size of the dialog as it was closed. | 1961 // The last requested size of the dialog as it was closed. |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2638 | 2642 |
| 2639 // The number of seconds since epoch that the OS password was last changed. | 2643 // The number of seconds since epoch that the OS password was last changed. |
| 2640 const char kOsPasswordLastChanged[] = | 2644 const char kOsPasswordLastChanged[] = |
| 2641 "password_manager.os_password_last_changed"; | 2645 "password_manager.os_password_last_changed"; |
| 2642 #endif | 2646 #endif |
| 2643 | 2647 |
| 2644 // Whether DNS Quick Check is disabled in proxy resolution. | 2648 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2645 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2646 | 2650 |
| 2647 } // namespace prefs | 2651 } // namespace prefs |
| OLD | NEW |