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

Unified Diff: chrome/common/pref_names.cc

Issue 820133002: Reusing names of policy keys from policy_constants.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index d55ab3ea2c582894230dab168b507230da79741f..437217b01eb6fb53645fc1a3fcf0fc9cadb8f0ea 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1698,6 +1698,26 @@ const char kRemoteAccessHostAllowGnubbyAuth[] =
const char kRemoteAccessHostAllowRelayedConnection[] =
"remote_access.host_allow_relayed_connection";
+// Boolean controlling if local host username has to match host owner username.
+const char kRemoteAccessHostMatchUsername[] =
+ "remote_access.host_match_username";
+
+// String.
+const char kRemoteAccessHostTokenUrl[] =
+ "remote_access.host_token_url";
+
+// String.
+const char kRemoteAccessHostTokenValidationUrl[] =
+ "remote_access.host_token_validation_url";
+
+// String.
+const char kRemoteAccessHostTokenValidationCertificateIssuer[] =
+ "remote_access.host_token_validation_certificate_issuer";
+
+// String containing JSON with policy overrides for Debug builds of Chromoting.
+const char kRemoteAccessHostDebugOverridePolicies[] =
+ "remote_access.host_debug_override_policies";
+
// String containing the UDP port range that the Chromoting host should used
// when connecting to clients. The port range should be in the form:
// <min_port>-<max_port>. E.g. 12400-12409.

Powered by Google App Engine
This is Rietveld 408576698