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

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

Issue 35333003: Intentionally bloat RenderObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated after pdr's review Created 7 years, 2 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/RenderObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderObject.h
diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
index 08a94f9f87de339d53e3c776bb661cde8fe8ba0d..277db3e63a214d3a83c37f3f76a19eed440c4127 100644
--- a/Source/core/rendering/RenderObject.h
+++ b/Source/core/rendering/RenderObject.h
@@ -1199,6 +1199,11 @@ private:
private:
// Store state between styleWillChange and styleDidChange
static bool s_affectsParentBlock;
+
+ // FIXME: Those variables are here for some performance measurements.
+ // They shouldn't stick in the tree. If they do, poke jchaffraix!
+ LayoutRect m_dummyRectThatShouldntStickInTree1;
+ LayoutRect m_dummyRectThatShouldntStickInTree2;
};
inline bool RenderObject::documentBeingDestroyed() const
« no previous file with comments | « no previous file | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698