Chromium Code Reviews| Index: remoting/host/policy_hack/policy_watcher.cc |
| diff --git a/remoting/host/policy_hack/policy_watcher.cc b/remoting/host/policy_hack/policy_watcher.cc |
| index 7194bae10e39b9d7d1428414af0eb02e4649ac90..8f0bc9aaba66dec336d283bc7702343cf0c460ac 100644 |
| --- a/remoting/host/policy_hack/policy_watcher.cc |
| +++ b/remoting/host/policy_hack/policy_watcher.cc |
| @@ -92,6 +92,12 @@ const char PolicyWatcher::kHostTalkGadgetPrefixPolicyName[] = |
| const char PolicyWatcher::kHostRequireCurtainPolicyName[] = |
| "RemoteAccessHostRequireCurtain"; |
| +const char PolicyWatcher::kHostTokenUrlPolicyName[] = |
| + "RemoteAccessHostTokenUrl"; |
| + |
| +const char PolicyWatcher::kHostTokenValidationUrlPolicyName[] = |
| + "RemoteAccessHostTokenValidationUrl"; |
| + |
| const char PolicyWatcher::kHostDebugOverridePoliciesName[] = |
| "RemoteAccessHostDebugOverridePolicies"; |
| @@ -109,6 +115,8 @@ PolicyWatcher::PolicyWatcher( |
| default_values_->SetString(kHostDomainPolicyName, ""); |
| default_values_->SetString(kHostTalkGadgetPrefixPolicyName, |
| kDefaultHostTalkGadgetPrefix); |
| + default_values_->SetString(kHostTokenUrlPolicyName, ""); |
|
Sergey Ulanov
2013/03/28 22:34:54
please use std::string() instead of ""
rmsousa
2013/04/04 22:13:43
Done.
|
| + default_values_->SetString(kHostTokenValidationUrlPolicyName, ""); |
| #if !defined(NDEBUG) |
| default_values_->SetString(kHostDebugOverridePoliciesName, ""); |
| #endif |