| Index: third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h b/third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h
|
| index a2bbaf0c4c39a868dfbab7e9fd1b91c3834e916e..970d74e762ce84f23ea097750ca31a04a2c99d9a 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h
|
| @@ -30,6 +30,8 @@
|
| #include "SkImageInfo.h"
|
|
|
| #include "platform/PlatformExport.h"
|
| +#include "wtf/Allocator.h"
|
| +#include "wtf/Noncopyable.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| class SkData;
|
| @@ -44,6 +46,8 @@ class ImageFrameGenerator;
|
| // This class does not own an ImageDecode. It does not own encoded data. It serves
|
| // as and adapter to ImageFrameGenerator which actually performs decoding.
|
| class PLATFORM_EXPORT DecodingImageGenerator final : public SkImageGenerator {
|
| + USING_FAST_MALLOC(DecodingImageGenerator);
|
| + WTF_MAKE_NONCOPYABLE(DecodingImageGenerator);
|
| public:
|
| static SkImageGenerator* create(SkData*);
|
|
|
|
|