diff options
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc index 7b3938e..a2553f2 100644 --- a/chrome/renderer/webplugin_delegate_proxy.cc +++ b/chrome/renderer/webplugin_delegate_proxy.cc @@ -1506,10 +1506,9 @@ void WebPluginDelegateProxy::OnAcceleratedSurfaceSetTransportDIB( int32 width, int32 height, TransportDIB::Handle transport_dib) { - TransportDIB::ScopedHandle scoped_dib_handle(transport_dib); if (render_view_) render_view_->AcceleratedSurfaceSetTransportDIB(window, width, height, - scoped_dib_handle.release()); + transport_dib); } void WebPluginDelegateProxy::OnAcceleratedSurfaceAllocTransportDIB( |