OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // Most of this code is copied from: | 5 // Most of this code is copied from: |
6 // src/chrome/browser/policy/asynchronous_policy_loader.{h,cc} | 6 // src/chrome/browser/policy/asynchronous_policy_loader.{h,cc} |
7 | 7 |
8 #include "remoting/host/policy_watcher.h" | 8 #include "remoting/host/policy_watcher.h" |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "components/policy/core/common/config_dir_policy_loader.h" | 35 #include "components/policy/core/common/config_dir_policy_loader.h" |
36 #endif | 36 #endif |
37 | 37 |
38 namespace remoting { | 38 namespace remoting { |
39 | 39 |
40 namespace key = ::policy::key; | 40 namespace key = ::policy::key; |
41 | 41 |
42 namespace { | 42 namespace { |
43 | 43 |
44 // Copies all policy values from one dictionary to another, using values from | 44 // Copies all policy values from one dictionary to another, using values from |
45 // |default| if they are not set in |from|, or values from |bad_type_values| if | 45 // |default_values| if they are not set in |from|. |
46 // the value in |from| has the wrong type. | 46 scoped_ptr<base::DictionaryValue> CopyValuesAndAddDefaults( |
47 scoped_ptr<base::DictionaryValue> CopyGoodValuesAndAddDefaults( | |
48 const base::DictionaryValue* from, | 47 const base::DictionaryValue* from, |
49 const base::DictionaryValue* default_values, | 48 const base::DictionaryValue* default_values) { |
50 const base::DictionaryValue* bad_type_values) { | |
51 scoped_ptr<base::DictionaryValue> to(default_values->DeepCopy()); | 49 scoped_ptr<base::DictionaryValue> to(default_values->DeepCopy()); |
52 for (base::DictionaryValue::Iterator i(*default_values); !i.IsAtEnd(); | 50 for (base::DictionaryValue::Iterator i(*default_values); !i.IsAtEnd(); |
53 i.Advance()) { | 51 i.Advance()) { |
54 const base::Value* value = nullptr; | 52 const base::Value* value = nullptr; |
55 | 53 |
56 // If the policy isn't in |from|, use the default. | 54 // If the policy isn't in |from|, use the default. |
57 if (!from->Get(i.key(), &value)) { | 55 if (!from->Get(i.key(), &value)) { |
58 continue; | 56 continue; |
59 } | 57 } |
60 | 58 |
61 // If the policy is the wrong type, use the value from |bad_type_values|. | 59 CHECK(value->IsType(i.value().GetType())); |
62 if (!value->IsType(i.value().GetType())) { | |
63 CHECK(bad_type_values->Get(i.key(), &value)); | |
64 } | |
65 | |
66 to->Set(i.key(), value->DeepCopy()); | 60 to->Set(i.key(), value->DeepCopy()); |
67 } | 61 } |
68 | 62 |
69 #if !defined(NDEBUG) | 63 #if !defined(NDEBUG) |
70 // Replace values with those specified in DebugOverridePolicies, if present. | 64 // Replace values with those specified in DebugOverridePolicies, if present. |
71 std::string policy_overrides; | 65 std::string policy_overrides; |
72 if (from->GetString(key::kRemoteAccessHostDebugOverridePolicies, | 66 if (from->GetString(key::kRemoteAccessHostDebugOverridePolicies, |
73 &policy_overrides)) { | 67 &policy_overrides)) { |
74 scoped_ptr<base::Value> value(base::JSONReader::Read(policy_overrides)); | 68 scoped_ptr<base::Value> value(base::JSONReader::Read(policy_overrides)); |
75 const base::DictionaryValue* override_values; | 69 const base::DictionaryValue* override_values; |
76 if (value && value->GetAsDictionary(&override_values)) { | 70 if (value && value->GetAsDictionary(&override_values)) { |
77 to->MergeDictionary(override_values); | 71 to->MergeDictionary(override_values); |
78 } | 72 } |
79 } | 73 } |
80 #endif // defined(NDEBUG) | 74 #endif // defined(NDEBUG) |
81 | 75 |
82 return to.Pass(); | 76 return to.Pass(); |
83 } | 77 } |
84 | 78 |
85 policy::PolicyNamespace GetPolicyNamespace() { | 79 policy::PolicyNamespace GetPolicyNamespace() { |
86 return policy::PolicyNamespace(policy::POLICY_DOMAIN_CHROME, std::string()); | 80 return policy::PolicyNamespace(policy::POLICY_DOMAIN_CHROME, std::string()); |
87 } | 81 } |
88 | 82 |
| 83 scoped_ptr<policy::SchemaRegistry> CreateSchemaRegistry() { |
| 84 // TODO(lukasza): Schema below should ideally only cover Chromoting-specific |
| 85 // policies (expecting perf and maintanability improvement, but no functional |
| 86 // impact). |
| 87 policy::Schema schema = policy::Schema::Wrap(policy::GetChromeSchemaData()); |
| 88 |
| 89 scoped_ptr<policy::SchemaRegistry> schema_registry( |
| 90 new policy::SchemaRegistry()); |
| 91 schema_registry->RegisterComponent(GetPolicyNamespace(), schema); |
| 92 return schema_registry.Pass(); |
| 93 } |
| 94 |
89 } // namespace | 95 } // namespace |
90 | 96 |
91 void PolicyWatcher::StartWatching( | 97 void PolicyWatcher::StartWatching( |
92 const PolicyUpdatedCallback& policy_updated_callback, | 98 const PolicyUpdatedCallback& policy_updated_callback, |
93 const PolicyErrorCallback& policy_error_callback) { | 99 const PolicyErrorCallback& policy_error_callback) { |
94 DCHECK(CalledOnValidThread()); | 100 DCHECK(CalledOnValidThread()); |
95 DCHECK(!policy_updated_callback.is_null()); | 101 DCHECK(!policy_updated_callback.is_null()); |
96 DCHECK(!policy_error_callback.is_null()); | 102 DCHECK(!policy_error_callback.is_null()); |
97 DCHECK(policy_updated_callback_.is_null()); | 103 DCHECK(policy_updated_callback_.is_null()); |
98 | 104 |
99 policy_updated_callback_ = policy_updated_callback; | 105 policy_updated_callback_ = policy_updated_callback; |
100 policy_error_callback_ = policy_error_callback; | 106 policy_error_callback_ = policy_error_callback; |
101 | 107 |
102 // Listen for future policy changes. | 108 // Listen for future policy changes. |
103 policy_service_->AddObserver(policy::POLICY_DOMAIN_CHROME, this); | 109 policy_service_->AddObserver(policy::POLICY_DOMAIN_CHROME, this); |
104 | 110 |
105 // Process current policy state. | 111 // Process current policy state. |
106 if (policy_service_->IsInitializationComplete(policy::POLICY_DOMAIN_CHROME)) { | 112 if (policy_service_->IsInitializationComplete(policy::POLICY_DOMAIN_CHROME)) { |
107 OnPolicyServiceInitialized(policy::POLICY_DOMAIN_CHROME); | 113 OnPolicyServiceInitialized(policy::POLICY_DOMAIN_CHROME); |
108 } | 114 } |
109 } | 115 } |
110 | 116 |
111 void PolicyWatcher::UpdatePolicies( | 117 void PolicyWatcher::UpdatePolicies( |
112 const base::DictionaryValue* new_policies_raw) { | 118 const base::DictionaryValue* new_policies_raw) { |
113 DCHECK(CalledOnValidThread()); | 119 DCHECK(CalledOnValidThread()); |
114 | 120 |
115 transient_policy_error_retry_counter_ = 0; | |
116 | |
117 // Use default values for any missing policies. | 121 // Use default values for any missing policies. |
118 scoped_ptr<base::DictionaryValue> new_policies = CopyGoodValuesAndAddDefaults( | 122 scoped_ptr<base::DictionaryValue> new_policies = |
119 new_policies_raw, default_values_.get(), bad_type_values_.get()); | 123 CopyValuesAndAddDefaults(new_policies_raw, default_values_.get()); |
120 | 124 |
121 // Find the changed policies. | 125 // Find the changed policies. |
122 scoped_ptr<base::DictionaryValue> changed_policies( | 126 scoped_ptr<base::DictionaryValue> changed_policies( |
123 new base::DictionaryValue()); | 127 new base::DictionaryValue()); |
124 base::DictionaryValue::Iterator iter(*new_policies); | 128 base::DictionaryValue::Iterator iter(*new_policies); |
125 while (!iter.IsAtEnd()) { | 129 while (!iter.IsAtEnd()) { |
126 base::Value* old_policy; | 130 base::Value* old_policy; |
127 if (!(old_policies_->Get(iter.key(), &old_policy) && | 131 if (!(old_policies_->Get(iter.key(), &old_policy) && |
128 old_policy->Equals(&iter.value()))) { | 132 old_policy->Equals(&iter.value()))) { |
129 changed_policies->Set(iter.key(), iter.value().DeepCopy()); | 133 changed_policies->Set(iter.key(), iter.value().DeepCopy()); |
130 } | 134 } |
131 iter.Advance(); | 135 iter.Advance(); |
132 } | 136 } |
133 | 137 |
134 // Save the new policies. | 138 // Save the new policies. |
135 old_policies_.swap(new_policies); | 139 old_policies_.swap(new_policies); |
136 | 140 |
137 // Notify our client of the changed policies. | 141 // Notify our client of the changed policies. |
138 if (!changed_policies->empty()) { | 142 if (!changed_policies->empty()) { |
139 policy_updated_callback_.Run(changed_policies.Pass()); | 143 policy_updated_callback_.Run(changed_policies.Pass()); |
140 } | 144 } |
141 } | 145 } |
142 | 146 |
143 void PolicyWatcher::SignalPolicyError() { | 147 void PolicyWatcher::SignalPolicyError() { |
144 transient_policy_error_retry_counter_ = 0; | |
145 policy_error_callback_.Run(); | 148 policy_error_callback_.Run(); |
146 } | 149 } |
147 | 150 |
148 void PolicyWatcher::SignalTransientPolicyError() { | |
149 const int kMaxRetryCount = 5; | |
150 transient_policy_error_retry_counter_ += 1; | |
151 if (transient_policy_error_retry_counter_ >= kMaxRetryCount) { | |
152 SignalPolicyError(); | |
153 } | |
154 } | |
155 | |
156 PolicyWatcher::PolicyWatcher( | 151 PolicyWatcher::PolicyWatcher( |
157 policy::PolicyService* policy_service, | 152 policy::PolicyService* policy_service, |
158 scoped_ptr<policy::PolicyService> owned_policy_service, | 153 scoped_ptr<policy::PolicyService> owned_policy_service, |
159 scoped_ptr<policy::ConfigurationPolicyProvider> owned_policy_provider, | 154 scoped_ptr<policy::ConfigurationPolicyProvider> owned_policy_provider, |
160 scoped_ptr<policy::SchemaRegistry> owned_schema_registry) | 155 scoped_ptr<policy::SchemaRegistry> owned_schema_registry) |
161 : transient_policy_error_retry_counter_(0), | 156 : old_policies_(new base::DictionaryValue()), |
162 old_policies_(new base::DictionaryValue()), | |
163 default_values_(new base::DictionaryValue()), | 157 default_values_(new base::DictionaryValue()), |
164 policy_service_(policy_service), | 158 policy_service_(policy_service), |
165 owned_schema_registry_(owned_schema_registry.Pass()), | 159 owned_schema_registry_(owned_schema_registry.Pass()), |
166 owned_policy_provider_(owned_policy_provider.Pass()), | 160 owned_policy_provider_(owned_policy_provider.Pass()), |
167 owned_policy_service_(owned_policy_service.Pass()) { | 161 owned_policy_service_(owned_policy_service.Pass()) { |
| 162 DCHECK(policy_service_); |
| 163 DCHECK(owned_schema_registry_); |
| 164 |
168 // Initialize the default values for each policy. | 165 // Initialize the default values for each policy. |
169 default_values_->SetBoolean(key::kRemoteAccessHostFirewallTraversal, true); | 166 default_values_->SetBoolean(key::kRemoteAccessHostFirewallTraversal, true); |
170 default_values_->SetBoolean(key::kRemoteAccessHostRequireCurtain, false); | 167 default_values_->SetBoolean(key::kRemoteAccessHostRequireCurtain, false); |
171 default_values_->SetBoolean(key::kRemoteAccessHostMatchUsername, false); | 168 default_values_->SetBoolean(key::kRemoteAccessHostMatchUsername, false); |
172 default_values_->SetString(key::kRemoteAccessHostDomain, std::string()); | 169 default_values_->SetString(key::kRemoteAccessHostDomain, std::string()); |
173 default_values_->SetString(key::kRemoteAccessHostTalkGadgetPrefix, | 170 default_values_->SetString(key::kRemoteAccessHostTalkGadgetPrefix, |
174 kDefaultHostTalkGadgetPrefix); | 171 kDefaultHostTalkGadgetPrefix); |
175 default_values_->SetString(key::kRemoteAccessHostTokenUrl, std::string()); | 172 default_values_->SetString(key::kRemoteAccessHostTokenUrl, std::string()); |
176 default_values_->SetString(key::kRemoteAccessHostTokenValidationUrl, | 173 default_values_->SetString(key::kRemoteAccessHostTokenValidationUrl, |
177 std::string()); | 174 std::string()); |
178 default_values_->SetString( | 175 default_values_->SetString( |
179 key::kRemoteAccessHostTokenValidationCertificateIssuer, std::string()); | 176 key::kRemoteAccessHostTokenValidationCertificateIssuer, std::string()); |
180 default_values_->SetBoolean(key::kRemoteAccessHostAllowClientPairing, true); | 177 default_values_->SetBoolean(key::kRemoteAccessHostAllowClientPairing, true); |
181 default_values_->SetBoolean(key::kRemoteAccessHostAllowGnubbyAuth, true); | 178 default_values_->SetBoolean(key::kRemoteAccessHostAllowGnubbyAuth, true); |
182 default_values_->SetBoolean(key::kRemoteAccessHostAllowRelayedConnection, | 179 default_values_->SetBoolean(key::kRemoteAccessHostAllowRelayedConnection, |
183 true); | 180 true); |
184 default_values_->SetString(key::kRemoteAccessHostUdpPortRange, ""); | 181 default_values_->SetString(key::kRemoteAccessHostUdpPortRange, ""); |
185 #if !defined(NDEBUG) | 182 #if !defined(NDEBUG) |
186 default_values_->SetString(key::kRemoteAccessHostDebugOverridePolicies, | 183 default_values_->SetString(key::kRemoteAccessHostDebugOverridePolicies, |
187 std::string()); | 184 std::string()); |
188 #endif | 185 #endif |
189 | |
190 // Initialize the fall-back values to use for unreadable policies. | |
191 // For most policies these match the defaults. | |
192 bad_type_values_.reset(default_values_->DeepCopy()); | |
193 bad_type_values_->SetBoolean(key::kRemoteAccessHostFirewallTraversal, false); | |
194 bad_type_values_->SetBoolean(key::kRemoteAccessHostAllowRelayedConnection, | |
195 false); | |
196 } | 186 } |
197 | 187 |
198 PolicyWatcher::~PolicyWatcher() { | 188 PolicyWatcher::~PolicyWatcher() { |
199 // Stop observing |policy_service_| if StartWatching() has been called. | 189 // Stop observing |policy_service_| if StartWatching() has been called. |
200 if (!policy_updated_callback_.is_null()) { | 190 if (!policy_updated_callback_.is_null()) { |
201 policy_service_->RemoveObserver(policy::POLICY_DOMAIN_CHROME, this); | 191 policy_service_->RemoveObserver(policy::POLICY_DOMAIN_CHROME, this); |
202 } | 192 } |
203 | 193 |
204 if (owned_policy_provider_) { | 194 if (owned_policy_provider_) { |
205 owned_policy_provider_->Shutdown(); | 195 owned_policy_provider_->Shutdown(); |
206 } | 196 } |
207 } | 197 } |
208 | 198 |
| 199 const policy::Schema* PolicyWatcher::GetPolicySchema() const { |
| 200 return owned_schema_registry_->schema_map()->GetSchema(GetPolicyNamespace()); |
| 201 } |
| 202 |
209 void PolicyWatcher::OnPolicyUpdated(const policy::PolicyNamespace& ns, | 203 void PolicyWatcher::OnPolicyUpdated(const policy::PolicyNamespace& ns, |
210 const policy::PolicyMap& previous, | 204 const policy::PolicyMap& previous, |
211 const policy::PolicyMap& current) { | 205 const policy::PolicyMap& current) { |
| 206 const char kPolicyNamePrefix[] = "RemoteAccessHost"; |
212 scoped_ptr<base::DictionaryValue> policy_dict(new base::DictionaryValue()); | 207 scoped_ptr<base::DictionaryValue> policy_dict(new base::DictionaryValue()); |
213 for (auto it = current.begin(); it != current.end(); ++it) { | 208 for (auto it = current.begin(); it != current.end(); ++it) { |
214 // TODO(lukasza): Use policy::Schema::Normalize() for schema verification. | 209 const std::string& key = it->first; |
215 policy_dict->Set(it->first, it->second.value->DeepCopy()); | 210 const base::Value* value = it->second.value; |
| 211 |
| 212 // Copying only Chromoting-specific policies helps avoid false alarms |
| 213 // raised by Schema::Normalize below (such alarms shutdown the host). |
| 214 // TODO(lukasza): Removing this somewhat brittle filtering will be possible |
| 215 // after having separate, Chromoting-specific schema. |
| 216 if (key.find(kPolicyNamePrefix) != std::string::npos) { |
| 217 policy_dict->Set(key, value->DeepCopy()); |
| 218 } |
216 } | 219 } |
217 UpdatePolicies(policy_dict.get()); | 220 |
| 221 // Allowing unrecognized policy names allows presence of |
| 222 // 1) comments (i.e. JSON of the form: { "_comment": "blah", ... }), |
| 223 // 2) policies intended for future/newer versions of the host, |
| 224 // 3) policies not supported on all OS-s (i.e. RemoteAccessHostMatchUsername |
| 225 // is not supported on Windows and therefore policy_templates.json omits |
| 226 // schema for this policy on this particular platform). |
| 227 auto strategy = policy::SCHEMA_ALLOW_UNKNOWN_TOPLEVEL; |
| 228 |
| 229 std::string path; |
| 230 std::string error; |
| 231 bool changed; |
| 232 const policy::Schema* schema = GetPolicySchema(); |
| 233 if (schema->Normalize(policy_dict.get(), strategy, &path, &error, &changed)) { |
| 234 if (changed) { |
| 235 LOG(WARNING) << "Unknown (unrecognized or unsupported) policy: " << path |
| 236 << ": " << error; |
| 237 } |
| 238 UpdatePolicies(policy_dict.get()); |
| 239 } else { |
| 240 LOG(ERROR) << "Invalid policy contents: " << path << ": " << error; |
| 241 SignalPolicyError(); |
| 242 } |
218 } | 243 } |
219 | 244 |
220 void PolicyWatcher::OnPolicyServiceInitialized(policy::PolicyDomain domain) { | 245 void PolicyWatcher::OnPolicyServiceInitialized(policy::PolicyDomain domain) { |
221 policy::PolicyNamespace ns = GetPolicyNamespace(); | 246 policy::PolicyNamespace ns = GetPolicyNamespace(); |
222 const policy::PolicyMap& current = policy_service_->GetPolicies(ns); | 247 const policy::PolicyMap& current = policy_service_->GetPolicies(ns); |
223 OnPolicyUpdated(ns, current, current); | 248 OnPolicyUpdated(ns, current, current); |
224 } | 249 } |
225 | 250 |
226 scoped_ptr<PolicyWatcher> PolicyWatcher::CreateFromPolicyLoader( | 251 scoped_ptr<PolicyWatcher> PolicyWatcher::CreateFromPolicyLoader( |
227 scoped_ptr<policy::AsyncPolicyLoader> async_policy_loader) { | 252 scoped_ptr<policy::AsyncPolicyLoader> async_policy_loader) { |
228 // TODO(lukasza): Schema below should ideally only cover Chromoting-specific | 253 scoped_ptr<policy::SchemaRegistry> schema_registry = CreateSchemaRegistry(); |
229 // policies (expecting perf and maintanability improvement, but no functional | |
230 // impact). | |
231 policy::Schema schema = policy::Schema::Wrap(policy::GetChromeSchemaData()); | |
232 | |
233 scoped_ptr<policy::SchemaRegistry> schema_registry( | |
234 new policy::SchemaRegistry()); | |
235 schema_registry->RegisterComponent(GetPolicyNamespace(), schema); | |
236 | |
237 scoped_ptr<policy::AsyncPolicyProvider> policy_provider( | 254 scoped_ptr<policy::AsyncPolicyProvider> policy_provider( |
238 new policy::AsyncPolicyProvider(schema_registry.get(), | 255 new policy::AsyncPolicyProvider(schema_registry.get(), |
239 async_policy_loader.Pass())); | 256 async_policy_loader.Pass())); |
240 policy_provider->Init(schema_registry.get()); | 257 policy_provider->Init(schema_registry.get()); |
241 | 258 |
242 policy::PolicyServiceImpl::Providers providers; | 259 policy::PolicyServiceImpl::Providers providers; |
243 providers.push_back(policy_provider.get()); | 260 providers.push_back(policy_provider.get()); |
244 scoped_ptr<policy::PolicyService> policy_service( | 261 scoped_ptr<policy::PolicyService> policy_service( |
245 new policy::PolicyServiceImpl(providers)); | 262 new policy::PolicyServiceImpl(providers)); |
246 | 263 |
247 policy::PolicyService* borrowed_policy_service = policy_service.get(); | 264 policy::PolicyService* borrowed_policy_service = policy_service.get(); |
248 return make_scoped_ptr( | 265 return make_scoped_ptr( |
249 new PolicyWatcher(borrowed_policy_service, policy_service.Pass(), | 266 new PolicyWatcher(borrowed_policy_service, policy_service.Pass(), |
250 policy_provider.Pass(), schema_registry.Pass())); | 267 policy_provider.Pass(), schema_registry.Pass())); |
251 } | 268 } |
252 | 269 |
253 scoped_ptr<PolicyWatcher> PolicyWatcher::Create( | 270 scoped_ptr<PolicyWatcher> PolicyWatcher::Create( |
254 policy::PolicyService* policy_service, | 271 policy::PolicyService* policy_service, |
255 const scoped_refptr<base::SingleThreadTaskRunner>& file_task_runner) { | 272 const scoped_refptr<base::SingleThreadTaskRunner>& file_task_runner) { |
256 #if defined(OS_CHROMEOS) | 273 #if defined(OS_CHROMEOS) |
257 // On Chrome OS the PolicyService is owned by the browser. | 274 // On Chrome OS the PolicyService is owned by the browser. |
258 DCHECK(policy_service); | 275 DCHECK(policy_service); |
259 return make_scoped_ptr( | 276 return make_scoped_ptr(new PolicyWatcher(policy_service, nullptr, nullptr, |
260 new PolicyWatcher(policy_service, nullptr, nullptr, nullptr)); | 277 CreateSchemaRegistry())); |
261 #else // !defined(OS_CHROMEOS) | 278 #else // !defined(OS_CHROMEOS) |
262 DCHECK(!policy_service); | 279 DCHECK(!policy_service); |
263 | 280 |
264 // Create platform-specific PolicyLoader. Always read the Chrome policies | 281 // Create platform-specific PolicyLoader. Always read the Chrome policies |
265 // (even on Chromium) so that policy enforcement can't be bypassed by running | 282 // (even on Chromium) so that policy enforcement can't be bypassed by running |
266 // Chromium. | 283 // Chromium. |
267 scoped_ptr<policy::AsyncPolicyLoader> policy_loader; | 284 scoped_ptr<policy::AsyncPolicyLoader> policy_loader; |
268 #if defined(OS_WIN) | 285 #if defined(OS_WIN) |
269 policy_loader = policy::PolicyLoaderWin::Create( | 286 policy_loader = policy::PolicyLoaderWin::Create( |
270 file_task_runner, L"SOFTWARE\\Policies\\Google\\Chrome"); | 287 file_task_runner, L"SOFTWARE\\Policies\\Google\\Chrome"); |
(...skipping 10 matching lines...) Expand all Loading... |
281 policy::POLICY_SCOPE_MACHINE)); | 298 policy::POLICY_SCOPE_MACHINE)); |
282 #else | 299 #else |
283 #error OS that is not yet supported by PolicyWatcher code. | 300 #error OS that is not yet supported by PolicyWatcher code. |
284 #endif | 301 #endif |
285 | 302 |
286 return PolicyWatcher::CreateFromPolicyLoader(policy_loader.Pass()); | 303 return PolicyWatcher::CreateFromPolicyLoader(policy_loader.Pass()); |
287 #endif // !(OS_CHROMEOS) | 304 #endif // !(OS_CHROMEOS) |
288 } | 305 } |
289 | 306 |
290 } // namespace remoting | 307 } // namespace remoting |
OLD | NEW |