Index: chrome/renderer/webplugin_delegate_proxy.cc |
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc |
index f1019cbd678a6c14dab51e18567bc26bf9bb6adf..247fbbfeb71e45308630c4f056e789baea7cb1f9 100644 |
--- a/chrome/renderer/webplugin_delegate_proxy.cc |
+++ b/chrome/renderer/webplugin_delegate_proxy.cc |
@@ -1400,8 +1400,10 @@ void WebPluginDelegateProxy::OnBindFakePluginWindowHandle(bool opaque) { |
// plug-in. |
bool WebPluginDelegateProxy::BindFakePluginWindowHandle(bool opaque) { |
gfx::PluginWindowHandle fake_window = NULL; |
- if (render_view_) |
- fake_window = render_view_->AllocateFakePluginWindowHandle(opaque, false); |
+ if (render_view_) { |
+ fake_window = render_view_->AllocateFakePluginWindowHandle( |
+ opaque, transparent_, /*is_root=*/false); |
+ } |
// If we aren't running on 10.6, this allocation will fail. |
if (!fake_window) |
return false; |