Index: third_party/WebKit/Source/platform/graphics/paint/ClipRecorder.h |
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipRecorder.h b/third_party/WebKit/Source/platform/graphics/paint/ClipRecorder.h |
index ea9af1109a56f366ced96bd2cac4a5986eb30638..2f2c8d53d99f0f46ccbb7c4140c4c40d21d6a732 100644 |
--- a/third_party/WebKit/Source/platform/graphics/paint/ClipRecorder.h |
+++ b/third_party/WebKit/Source/platform/graphics/paint/ClipRecorder.h |
@@ -8,13 +8,16 @@ |
#include "SkRegion.h" |
#include "platform/geometry/LayoutRect.h" |
#include "platform/graphics/paint/DisplayItem.h" |
+#include "wtf/Allocator.h" |
+#include "wtf/Noncopyable.h" |
namespace blink { |
class GraphicsContext; |
class PLATFORM_EXPORT ClipRecorder { |
- USING_FAST_MALLOC(ClipRecorder); |
+ DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); |
+ WTF_MAKE_NONCOPYABLE(ClipRecorder); |
public: |
ClipRecorder(GraphicsContext&, const DisplayItemClientWrapper&, DisplayItem::Type, const LayoutRect& clipRect); |
~ClipRecorder(); |