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

Unified Diff: Source/core/paint/TableRowPainter.h

Issue 1319893002: Make classes and structures in core/paint fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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/paint/TableRowPainter.h
diff --git a/Source/core/paint/TableRowPainter.h b/Source/core/paint/TableRowPainter.h
index 2220829f238fbfb2adcacc67f091d5913391ebab..f32d6e716f7299b25d12d8102b376720f5ff1212 100644
--- a/Source/core/paint/TableRowPainter.h
+++ b/Source/core/paint/TableRowPainter.h
@@ -6,10 +6,12 @@
#define TableRowPainter_h
#include "core/layout/LayoutTableRow.h"
+#include "wtf/Allocator.h"
namespace blink {
class TableRowPainter {
+ STACK_ALLOCATED();
public:
TableRowPainter(LayoutTableRow& layoutTableRow) : m_layoutTableRow(layoutTableRow) { }

Powered by Google App Engine
This is Rietveld 408576698