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

Unified Diff: Source/core/rendering/LayoutRectRecorder.h

Issue 208103002: [repaint-after-layout] Only repaint SVG root element when needed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Source/core/rendering/LayoutRectRecorder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/LayoutRectRecorder.h
diff --git a/Source/core/rendering/LayoutRectRecorder.h b/Source/core/rendering/LayoutRectRecorder.h
index c92eb5efc90d50bfbac57653cda3a1c84df4b4b2..50237c9193c1d34a716ba852c4be2b0f15559e7c 100644
--- a/Source/core/rendering/LayoutRectRecorder.h
+++ b/Source/core/rendering/LayoutRectRecorder.h
@@ -42,14 +42,14 @@ class RenderObject;
class LayoutRectRecorder {
WTF_MAKE_NONCOPYABLE(LayoutRectRecorder);
public:
- LayoutRectRecorder(RenderObject&, bool skipRecording = false);
+ LayoutRectRecorder(RenderObject&, bool record = true);
~LayoutRectRecorder();
static bool shouldRecordLayoutRects();
private:
RenderObject& m_object;
- bool m_skipRecording;
+ bool m_record;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/rendering/LayoutRectRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698