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

Unified Diff: Source/core/paint/MultiColumnSetPainter.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/MultiColumnSetPainter.h
diff --git a/Source/core/paint/MultiColumnSetPainter.h b/Source/core/paint/MultiColumnSetPainter.h
index 0a047da59aa3efa6c7a8a5c62426f295eb0c0f85..939b82423428e452e59aabe0525e191268e78465 100644
--- a/Source/core/paint/MultiColumnSetPainter.h
+++ b/Source/core/paint/MultiColumnSetPainter.h
@@ -5,6 +5,8 @@
#ifndef MultiColumnSetPainter_h
#define MultiColumnSetPainter_h
+#include "wtf/Allocator.h"
+
namespace blink {
struct PaintInfo;
@@ -12,6 +14,7 @@ class LayoutPoint;
class LayoutMultiColumnSet;
class MultiColumnSetPainter {
+ STACK_ALLOCATED();
public:
MultiColumnSetPainter(LayoutMultiColumnSet& layoutMultiColumnSet) : m_layoutMultiColumnSet(layoutMultiColumnSet) { }
void paintObject(const PaintInfo&, const LayoutPoint& paintOffset);

Powered by Google App Engine
This is Rietveld 408576698