| 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/browser/net/proxy_policy_handler.h" | 10 #include "chrome/browser/net/proxy_policy_handler.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, |
| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 #endif // defined(OS_CHROMEOS) | 675 #endif // defined(OS_CHROMEOS) |
| 673 | 676 |
| 674 #if defined(OS_ANDROID) | 677 #if defined(OS_ANDROID) |
| 675 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( | 678 handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |
| 676 new ManagedBookmarksPolicyHandler())); | 679 new ManagedBookmarksPolicyHandler())); |
| 677 #endif | 680 #endif |
| 678 return handlers.Pass(); | 681 return handlers.Pass(); |
| 679 } | 682 } |
| 680 | 683 |
| 681 } // namespace policy | 684 } // namespace policy |
| OLD | NEW |