Chromium Code Reviews| Index: third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h |
| diff --git a/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h b/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h |
| index 3b486dfe375deaba7086108fc93393f9376f7f43..e6d0fbd5610173c43574f0c34028e2f54e8237a4 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h |
| +++ b/third_party/WebKit/Source/platform/graphics/skia/ImagePixelLocker.h |
| @@ -22,13 +22,14 @@ class ImagePixelLocker final { |
| WTF_MAKE_NONCOPYABLE(ImagePixelLocker); |
| public: |
| ImagePixelLocker(PassRefPtr<const SkImage>, SkAlphaType, SkColorType); |
| + ~ImagePixelLocker(); |
| const void* pixels() const { return m_pixels; } |
| private: |
| const RefPtr<const SkImage> m_image; |
| const void* m_pixels; |
| - SkAutoPixmapStorage m_pixelStorage; |
| + SkPixmap m_pixelStorage; |
|
f(malita)
2016/03/16 19:28:29
Let's rename this to m_pixmap.
robertphillips
2016/03/16 19:59:10
It is actually back to being more of a pure pixel
|
| }; |
| } // namespace blink |