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

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

Issue 208143003: Issue trace events to gather repaint information. (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
Index: Source/core/rendering/RenderObject.h
diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
index 7ffb86cf19aca82d227df40ec668be67628ae97a..025133bb906e3b23fbd2a464c3dd189ba44aba9d 100644
--- a/Source/core/rendering/RenderObject.h
+++ b/Source/core/rendering/RenderObject.h
@@ -1072,6 +1072,16 @@ private:
void checkBlockPositionedObjectsNeedLayout();
#endif
+ enum RepaintReason {
+ RepaintNone,
+ RepaintSelfLayout,
+ RepaintBorderFitLines,
+ RepaintBorderRadius,
+ RepaintOutlineBoxChange,
+ RepaintBoundsChange
+ };
+ const char* repaintReasonToString(const RepaintReason) const;
+
RefPtr<RenderStyle> m_style;
Node* m_node;

Powered by Google App Engine
This is Rietveld 408576698