Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: chrome/common/pref_names.cc

Issue 138753005: Add gnubby authentication to remoting host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address latest review comments Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after
1949 "remote_access.host_talkgadget_prefix"; 1949 "remote_access.host_talkgadget_prefix";
1950 1950
1951 // Boolean controlling whether curtaining is required when connecting to a host. 1951 // Boolean controlling whether curtaining is required when connecting to a host.
1952 const char kRemoteAccessHostRequireCurtain[] = 1952 const char kRemoteAccessHostRequireCurtain[] =
1953 "remote_access.host_require_curtain"; 1953 "remote_access.host_require_curtain";
1954 1954
1955 // Boolean controlling whether curtaining is required when connecting to a host. 1955 // Boolean controlling whether curtaining is required when connecting to a host.
1956 const char kRemoteAccessHostAllowClientPairing[] = 1956 const char kRemoteAccessHostAllowClientPairing[] =
1957 "remote_access.host_allow_client_pairing"; 1957 "remote_access.host_allow_client_pairing";
1958 1958
1959 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic.
1960 const char kRemoteAccessAllowGnubbyAuth[] =
1961 "remote_access.host_allow_gnubby_auth";
1962
1959 // The last used printer and its settings. 1963 // The last used printer and its settings.
1960 const char kPrintPreviewStickySettings[] = 1964 const char kPrintPreviewStickySettings[] =
1961 "printing.print_preview_sticky_settings"; 1965 "printing.print_preview_sticky_settings";
1962 // The root URL of the cloud print service. 1966 // The root URL of the cloud print service.
1963 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; 1967 const char kCloudPrintServiceURL[] = "cloud_print.service_url";
1964 1968
1965 // The URL to use to sign in to cloud print. 1969 // The URL to use to sign in to cloud print.
1966 const char kCloudPrintSigninURL[] = "cloud_print.signin_url"; 1970 const char kCloudPrintSigninURL[] = "cloud_print.signin_url";
1967 1971
1968 // The last requested size of the dialog as it was closed. 1972 // The last requested size of the dialog as it was closed.
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
2642 2646
2643 // The number of seconds since epoch that the OS password was last changed. 2647 // The number of seconds since epoch that the OS password was last changed.
2644 const char kOsPasswordLastChanged[] = 2648 const char kOsPasswordLastChanged[] =
2645 "password_manager.os_password_last_changed"; 2649 "password_manager.os_password_last_changed";
2646 #endif 2650 #endif
2647 2651
2648 // Whether DNS Quick Check is disabled in proxy resolution. 2652 // Whether DNS Quick Check is disabled in proxy resolution.
2649 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2653 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2650 2654
2651 } // namespace prefs 2655 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698