Commit b0dda9e2 authored by piman@chromium.org's avatar piman@chromium.org

Fix resize with --enable-threaded-compositing

BUG=https://bugs.webkit.org/show_bug.cgi?id=74290
TEST=chrome --enable-threaded-compositing


Review URL: http://codereview.chromium.org/8912002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114260 0039d316-1c4b-4281-b951-d872f2087c98
parent 8b70f29a
...@@ -1044,7 +1044,7 @@ void RenderWidget::didCompleteSwapBuffers() { ...@@ -1044,7 +1044,7 @@ void RenderWidget::didCompleteSwapBuffers() {
params.plugin_window_moves.swap(plugin_window_moves_); params.plugin_window_moves.swap(plugin_window_moves_);
params.flags = next_paint_flags_; params.flags = next_paint_flags_;
params.scroll_offset = GetScrollOffset(); params.scroll_offset = GetScrollOffset();
update_reply_pending_ = true; params.needs_ack = false;
Send(new ViewHostMsg_UpdateRect(routing_id_, params)); Send(new ViewHostMsg_UpdateRect(routing_id_, params));
next_paint_flags_ = 0; next_paint_flags_ = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment