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

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: Rebasing... Created 5 years, 12 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 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 fec923fa3ed6a29985f515fda6e60323d7181e3a..02221ceee10b54a661893eb1fd51717f449e0cca 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -1689,6 +1689,25 @@ 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