Chromium Code Reviews| Index: third_party/WebKit/Source/core/svg/SVGFEImageElement.h |
| diff --git a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h |
| index f545fb08362919eba1bbc4f7261cce2a627bb38c..bae04f009a3ce8ee0b1cc1af767b0d564d5e6b7d 100644 |
| --- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h |
| +++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h |
| @@ -23,6 +23,7 @@ |
| #include "core/SVGNames.h" |
| #include "core/fetch/ImageResource.h" |
| +#include "core/fetch/ImageResourceObserver.h" |
| #include "core/fetch/ResourceClient.h" |
|
yhirano
2016/11/29 08:26:31
Not needed?
hiroshige
2016/11/29 09:18:56
Done.
|
| #include "core/svg/SVGAnimatedPreserveAspectRatio.h" |
| #include "core/svg/SVGFilterPrimitiveStandardAttributes.h" |
| @@ -33,7 +34,7 @@ namespace blink { |
| class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes, |
| public SVGURIReference, |
| - public ResourceClient { |
| + public ImageResourceObserver { |
| DEFINE_WRAPPERTYPEINFO(); |
| USING_GARBAGE_COLLECTED_MIXIN(SVGFEImageElement); |
| @@ -55,7 +56,7 @@ class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes, |
| explicit SVGFEImageElement(Document&); |
| void svgAttributeChanged(const QualifiedName&) override; |
| - void notifyFinished(Resource*) override; |
| + void imageNotifyFinished(ImageResource*) override; |
| String debugName() const override { return "SVGFEImageElement"; } |
| FilterEffect* build(SVGFilterBuilder*, Filter*) override; |