| Index: third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
|
| index 1edf9f3738404b9dcfd000c625eef32522c71c68..5d4bc98c8bf0b18f30be7d520850d6942d1aa892 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/PaintChunk.h
|
| @@ -6,6 +6,7 @@
|
| #define PaintChunk_h
|
|
|
| #include "platform/graphics/paint/PaintChunkProperties.h"
|
| +#include "wtf/Allocator.h"
|
| #include <iosfwd>
|
|
|
| namespace blink {
|
| @@ -17,6 +18,7 @@ namespace blink {
|
| //
|
| // This is a Slimming Paint v2 class.
|
| struct PaintChunk {
|
| + DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
|
| PaintChunk() : beginIndex(0), endIndex(0) { }
|
| PaintChunk(unsigned begin, unsigned end, const PaintChunkProperties& props)
|
| : beginIndex(begin), endIndex(end), properties(props) { }
|
|
|