Index: third_party/WebKit/Source/core/fetch/ImageResourceObserver.h |
diff --git a/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h b/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h |
index b7ed50d1d6545baad1ddd802ac421bf57e4e74ae..fc546a32a5da8bdfec4f7de5504dd4ad11a63628 100644 |
--- a/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h |
+++ b/third_party/WebKit/Source/core/fetch/ImageResourceObserver.h |
@@ -30,7 +30,7 @@ |
namespace blink { |
-class ImageResource; |
+class ImageResourceContent; |
class IntRect; |
class CORE_EXPORT ImageResourceObserver { |
@@ -40,10 +40,10 @@ class CORE_EXPORT ImageResourceObserver { |
// Called whenever a frame of an image changes, either because we got more |
// data from the network or because we are animating. If not null, the IntRect |
// is the changed rect of the image. |
- virtual void imageChanged(ImageResource*, const IntRect* = 0) {} |
+ virtual void imageChanged(ImageResourceContent*, const IntRect* = 0) {} |
// Called just after imageChanged() if all image data is received or errored. |
- virtual void imageNotifyFinished(ImageResource*) {} |
+ virtual void imageNotifyFinished(ImageResourceContent*) {} |
// Called to find out if this client wants to actually display the image. Used |
// to tell when we can halt animation. Content nodes that hold image refs for |