Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: chrome/browser/renderer_host/render_widget_host.h

Issue 66013: Fix problems correctly invalidating/repainting when our updated paint rect fo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host.h
===================================================================
--- chrome/browser/renderer_host/render_widget_host.h (revision 13668)
+++ chrome/browser/renderer_host/render_widget_host.h (working copy)
@@ -357,10 +357,6 @@
// The current size of the RenderWidget.
gfx::Size current_size_;
- // If true, then we should not ask our view to repaint when our backingstore
- // is updated.
- bool suppress_view_updating_;
-
// True if a mouse move event was sent to the render view and we are waiting
// for a corresponding ViewHostMsg_HandleInputEvent_ACK message.
bool mouse_move_pending_;
@@ -391,6 +387,9 @@
// Optional observer that listens for notifications of painting.
scoped_ptr<PaintObserver> paint_observer_;
+ // Flag to detect recurive calls to GetBackingStore().
+ bool in_get_backing_store_;
+
// Set when we call DidPaintRect/DidScrollRect on the view.
bool view_being_painted_;
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698