| Index: content/renderer/webplugin_delegate_proxy.cc
|
| diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc
|
| index de54a894ac4f9b37d7529b9845ec4177cecea029..7793797a134256bcbb72dc050bb52eb39c530df2 100644
|
| --- a/content/renderer/webplugin_delegate_proxy.cc
|
| +++ b/content/renderer/webplugin_delegate_proxy.cc
|
| @@ -1182,8 +1182,7 @@ void WebPluginDelegateProxy::OnCancelResource(int id) {
|
| plugin_->CancelResource(id);
|
| }
|
|
|
| -void WebPluginDelegateProxy::OnInvalidateRect(const gfx::Rect& rect,
|
| - bool allow_buffer_flipping) {
|
| +void WebPluginDelegateProxy::OnInvalidateRect(const gfx::Rect& rect) {
|
| if (!plugin_)
|
| return;
|
|
|
| @@ -1195,7 +1194,7 @@ void WebPluginDelegateProxy::OnInvalidateRect(const gfx::Rect& rect,
|
| // The plugin is blocked on the renderer because the invalidate message it has
|
| // sent us is synchronous, so we can use buffer flipping here if the caller
|
| // allows it.
|
| - UpdateFrontBuffer(clipped_rect, allow_buffer_flipping);
|
| + UpdateFrontBuffer(clipped_rect, true);
|
| plugin_->InvalidateRect(clipped_rect);
|
| }
|
|
|
|
|