| Index: Source/core/paint/SVGFilterPainter.h
|
| diff --git a/Source/core/paint/SVGFilterPainter.h b/Source/core/paint/SVGFilterPainter.h
|
| index 94a968e5975f74410b6fa9fd414e5a3dbc0a1bbc..26a0a330d55984a626b40b528074d26a10b39d49 100644
|
| --- a/Source/core/paint/SVGFilterPainter.h
|
| +++ b/Source/core/paint/SVGFilterPainter.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "platform/graphics/GraphicsContext.h"
|
| #include "platform/graphics/paint/DisplayItemList.h"
|
| +#include "wtf/Allocator.h"
|
| #include "wtf/OwnPtr.h"
|
|
|
| namespace blink {
|
| @@ -16,6 +17,8 @@ class LayoutObject;
|
| class LayoutSVGResourceFilter;
|
|
|
| class SVGFilterRecordingContext {
|
| + WTF_MAKE_FAST_ALLOCATED(SVGFilterRecordingContext);
|
| + WTF_MAKE_NONCOPYABLE(SVGFilterRecordingContext);
|
| public:
|
| explicit SVGFilterRecordingContext(GraphicsContext* initialContext) : m_initialContext(initialContext) { }
|
|
|
| @@ -31,6 +34,7 @@ private:
|
| };
|
|
|
| class SVGFilterPainter {
|
| + STACK_ALLOCATED();
|
| public:
|
| SVGFilterPainter(LayoutSVGResourceFilter& filter) : m_filter(filter) { }
|
|
|
|
|