| 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..d668c1d1e34d9418583fd05ab3738a3ce28ba6bb 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
|
| @@ -23,7 +23,7 @@
|
|
|
| #include "core/SVGNames.h"
|
| #include "core/fetch/ImageResource.h"
|
| -#include "core/fetch/ResourceClient.h"
|
| +#include "core/fetch/ImageResourceObserver.h"
|
| #include "core/svg/SVGAnimatedPreserveAspectRatio.h"
|
| #include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
|
| #include "core/svg/SVGURIReference.h"
|
| @@ -33,7 +33,7 @@ namespace blink {
|
|
|
| class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes,
|
| public SVGURIReference,
|
| - public ResourceClient {
|
| + public ImageResourceObserver {
|
| DEFINE_WRAPPERTYPEINFO();
|
| USING_GARBAGE_COLLECTED_MIXIN(SVGFEImageElement);
|
|
|
| @@ -55,7 +55,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;
|
|
|