| Index: third_party/WebKit/Source/platform/graphics/Image.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/Image.h b/third_party/WebKit/Source/platform/graphics/Image.h
|
| index 88851568fd97a6378e38e6b7b49cf2914039ea42..052ea8e83a65c000a5dbe0f04277b0e4311167df 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Image.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/Image.h
|
| @@ -104,7 +104,7 @@ public:
|
|
|
| virtual String filenameExtension() const { return String(); } // null string if unknown
|
|
|
| - virtual void destroyDecodedData(bool destroyAll) = 0;
|
| + virtual void destroyDecodedData() = 0;
|
|
|
| SharedBuffer* data() { return m_encodedImageData.get(); }
|
|
|
| @@ -112,7 +112,6 @@ public:
|
| // It will automatically pause once all observers no longer want to render the image anywhere.
|
| enum CatchUpAnimation { DoNotCatchUp, CatchUp };
|
| virtual void startAnimation(CatchUpAnimation = CatchUp) { }
|
| - virtual void stopAnimation() {}
|
| virtual void resetAnimation() {}
|
|
|
| // True if this image can potentially animate.
|
|
|