Index: Source/core/paint/DeprecatedPaintLayerFilterInfo.h |
diff --git a/Source/core/paint/DeprecatedPaintLayerFilterInfo.h b/Source/core/paint/DeprecatedPaintLayerFilterInfo.h |
index 4bb346e84b57b0b754a221edae43fc2dc864da2d..244ce67177a312fbc736de3aa2149ccd8aa8b55d 100644 |
--- a/Source/core/paint/DeprecatedPaintLayerFilterInfo.h |
+++ b/Source/core/paint/DeprecatedPaintLayerFilterInfo.h |
@@ -35,6 +35,7 @@ |
#include "platform/geometry/LayoutRect.h" |
#include "platform/graphics/filters/FilterOperation.h" |
#include "wtf/HashMap.h" |
+#include "wtf/Noncopyable.h" |
#include "wtf/PassRefPtr.h" |
#include "wtf/RefPtr.h" |
@@ -48,6 +49,8 @@ class DeprecatedPaintLayerFilterInfo; |
typedef HashMap<const DeprecatedPaintLayer*, DeprecatedPaintLayerFilterInfo*> DeprecatedPaintLayerFilterInfoMap; |
class DeprecatedPaintLayerFilterInfo final : public DocumentResourceClient { |
+ WTF_MAKE_FAST_ALLOCATED(DeprecatedPaintLayerFilterInfo); |
haraken
2015/08/27 09:02:49
Just to confirm: You don't want to add this to the
tasak
2015/08/28 03:58:36
Right.
DocumentResourceClient is one of difficult
|
+ WTF_MAKE_NONCOPYABLE(DeprecatedPaintLayerFilterInfo); |
public: |
static DeprecatedPaintLayerFilterInfo* filterInfoForLayer(const DeprecatedPaintLayer*); |
static DeprecatedPaintLayerFilterInfo* createFilterInfoForLayerIfNeeded(DeprecatedPaintLayer*); |