Index: chrome/common/chrome_content_client.cc |
=================================================================== |
--- chrome/common/chrome_content_client.cc (revision 132263) |
+++ chrome/common/chrome_content_client.cc (working copy) |
@@ -402,6 +402,15 @@ |
return false; |
} |
+ // Add policy for the plugin proxy window pump event |
+ // used by WebPluginDelegateProxy::HandleInputEvent(). |
+ if (policy->AddRule(sandbox::TargetPolicy::SUBSYS_HANDLES, |
+ sandbox::TargetPolicy::HANDLES_DUP_ANY, |
+ L"Event") != sandbox::SBOX_ALL_OK) { |
+ NOTREACHED(); |
+ return false; |
+ } |
+ |
// Add the policy for the pipes. |
if (policy->AddRule(sandbox::TargetPolicy::SUBSYS_NAMED_PIPES, |
sandbox::TargetPolicy::NAMEDPIPES_ALLOW_ANY, |