Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/browser/policy/configuration_policy_handler_list_factory.h" | 5 #include "chrome/browser/policy/configuration_policy_handler_list_factory.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "chrome/common/pref_names.h" | 10 #include "chrome/common/pref_names.h" |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 258 base::Value::TYPE_STRING }, | 258 base::Value::TYPE_STRING }, |
| 259 { key::kRemoteAccessHostTalkGadgetPrefix, | 259 { key::kRemoteAccessHostTalkGadgetPrefix, |
| 260 prefs::kRemoteAccessHostTalkGadgetPrefix, | 260 prefs::kRemoteAccessHostTalkGadgetPrefix, |
| 261 base::Value::TYPE_STRING }, | 261 base::Value::TYPE_STRING }, |
| 262 { key::kRemoteAccessHostRequireCurtain, | 262 { key::kRemoteAccessHostRequireCurtain, |
| 263 prefs::kRemoteAccessHostRequireCurtain, | 263 prefs::kRemoteAccessHostRequireCurtain, |
| 264 base::Value::TYPE_BOOLEAN }, | 264 base::Value::TYPE_BOOLEAN }, |
| 265 { key::kRemoteAccessHostAllowClientPairing, | 265 { key::kRemoteAccessHostAllowClientPairing, |
| 266 prefs::kRemoteAccessHostAllowClientPairing, | 266 prefs::kRemoteAccessHostAllowClientPairing, |
| 267 base::Value::TYPE_BOOLEAN }, | 267 base::Value::TYPE_BOOLEAN }, |
| 268 { key::kRemoteAccessHostAllowGnubbyAuth, | |
|
Sergey Ulanov
2014/01/25 02:03:33
I don't think you need this. Chromoting host doesn
psj
2014/01/29 09:07:15
I added it because other remoting policies are nam
| |
| 269 prefs::kRemoteAccessHostAllowGnubbyAuth, | |
| 270 base::Value::TYPE_BOOLEAN }, | |
| 268 { key::kCloudPrintProxyEnabled, | 271 { key::kCloudPrintProxyEnabled, |
| 269 prefs::kCloudPrintProxyEnabled, | 272 prefs::kCloudPrintProxyEnabled, |
| 270 base::Value::TYPE_BOOLEAN }, | 273 base::Value::TYPE_BOOLEAN }, |
| 271 { key::kCloudPrintSubmitEnabled, | 274 { key::kCloudPrintSubmitEnabled, |
| 272 prefs::kCloudPrintSubmitEnabled, | 275 prefs::kCloudPrintSubmitEnabled, |
| 273 base::Value::TYPE_BOOLEAN }, | 276 base::Value::TYPE_BOOLEAN }, |
| 274 { key::kTranslateEnabled, | 277 { key::kTranslateEnabled, |
| 275 prefs::kEnableTranslate, | 278 prefs::kEnableTranslate, |
| 276 base::Value::TYPE_BOOLEAN }, | 279 base::Value::TYPE_BOOLEAN }, |
| 277 { key::kAllowOutdatedPlugins, | 280 { key::kAllowOutdatedPlugins, |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 665 #endif // defined(OS_CHROMEOS) | 668 #endif // defined(OS_CHROMEOS) |
| 666 | 669 |
| 667 #if defined(OS_ANDROID) | 670 #if defined(OS_ANDROID) |
| 668 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( | 671 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |
| 669 new ManagedBookmarksPolicyHandler())); | 672 new ManagedBookmarksPolicyHandler())); |
| 670 #endif | 673 #endif |
| 671 return handlers.Pass(); | 674 return handlers.Pass(); |
| 672 } | 675 } |
| 673 | 676 |
| 674 } // namespace policy | 677 } // namespace policy |
| OLD | NEW |