Index: chrome/browser/policy/configuration_policy_handler_list_factory.cc |
diff --git a/chrome/browser/policy/configuration_policy_handler_list_factory.cc b/chrome/browser/policy/configuration_policy_handler_list_factory.cc |
index 6528aeaebb9a4211e5307fa2e67252ba8272106d..8eff98d6223d53a34aaaa0e06d11b57f18e182dc 100644 |
--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc |
+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc |
@@ -530,6 +530,22 @@ scoped_ptr<ConfigurationPolicyHandlerList> BuildHandlerList( |
new ProxyPolicyHandler())); |
handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |
new URLBlacklistPolicyHandler())); |
+ handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |
+ new SimpleSchemaValidatingPolicyHandler( |
+ key::kRegisteredProtocolHandlers, |
+ prefs::kPolicyRegisteredProtocolHandlers, |
+ chrome_schema, |
+ SCHEMA_STRICT, |
+ true, |
+ false))); |
+ handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |
+ new SimpleSchemaValidatingPolicyHandler( |
+ key::kIgnoredProtocolHandlers, |
+ prefs::kPolicyIgnoredProtocolHandlers, |
+ chrome_schema, |
+ SCHEMA_STRICT, |
+ true, |
+ false))); |
#if !defined(OS_IOS) |
handlers->AddHandler(make_scoped_ptr<ConfigurationPolicyHandler>( |