Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: third_party/WebKit/Source/core/svg/SVGFEImageElement.h

Issue 2485873004: [ImageResource 1b] Change SVGFEImageElement from ResourceClient to ImageResourceObserver (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698