| Index: third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
|
| index b5d1490fa484e330e0b3ce1084a75bf873d456e1..655c9ef8a2ab8e3e7a105e7b432dc7677cc786bd 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
|
| @@ -120,10 +120,10 @@ public:
|
|
|
| bool hasAlpha() const;
|
| const IntRect& originalFrameRect() const { return m_originalFrameRect; }
|
| - Status status() const { return m_status; }
|
| + Status getStatus() const { return m_status; }
|
| unsigned duration() const { return m_duration; }
|
| - DisposalMethod disposalMethod() const { return m_disposalMethod; }
|
| - AlphaBlendSource alphaBlendSource() const { return m_alphaBlendSource; }
|
| + DisposalMethod getDisposalMethod() const { return m_disposalMethod; }
|
| + AlphaBlendSource getAlphaBlendSource() const { return m_alphaBlendSource; }
|
| bool premultiplyAlpha() const { return m_premultiplyAlpha; }
|
| SkBitmap::Allocator* allocator() const { return m_allocator; }
|
| const SkBitmap& getSkBitmap() const { return m_bitmap; }
|
|
|