| 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 ee10fe1121c75b0f894a6d142d950e2c8faf2370..63ede0ac4007cc9ff844fb4178a59c7ffc7f0bdd 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Image.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/Image.h
|
| @@ -101,12 +101,8 @@
|
| int height() const { return size().height(); }
|
| virtual bool getHotSpot(IntPoint&) const { return false; }
|
|
|
| - enum SizeAvailability {
|
| - SizeAvailable,
|
| - SizeUnavailable
|
| - };
|
| - virtual SizeAvailability setData(PassRefPtr<SharedBuffer> data, bool allDataReceived);
|
| - virtual SizeAvailability dataChanged(bool /*allDataReceived*/) { return SizeUnavailable; }
|
| + virtual bool setData(PassRefPtr<SharedBuffer> data, bool allDataReceived);
|
| + virtual bool dataChanged(bool /*allDataReceived*/) { return false; }
|
|
|
| virtual String filenameExtension() const { return String(); } // null string if unknown
|
|
|
|
|