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

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

Issue 2469873002: [ImageResource 4] Split ImageResource into Resource and Image parts (Closed)
Patch Set: style Created 4 years 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
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 d668c1d1e34d9418583fd05ab3738a3ce28ba6bb..ba01823dd3cfab3f19eaaa872d1456e4a70f9d84 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
@@ -22,7 +22,7 @@
#define SVGFEImageElement_h
#include "core/SVGNames.h"
-#include "core/fetch/ImageResource.h"
+#include "core/fetch/ImageResourceContent.h"
#include "core/fetch/ImageResourceObserver.h"
#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
#include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
@@ -55,7 +55,7 @@ class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes,
explicit SVGFEImageElement(Document&);
void svgAttributeChanged(const QualifiedName&) override;
- void imageNotifyFinished(ImageResource*) override;
+ void imageNotifyFinished(ImageResourceContent*) override;
String debugName() const override { return "SVGFEImageElement"; }
FilterEffect* build(SVGFilterBuilder*, Filter*) override;
@@ -69,7 +69,7 @@ class SVGFEImageElement final : public SVGFilterPrimitiveStandardAttributes,
Member<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
- Member<ImageResource> m_cachedImage;
+ Member<ImageResourceContent> m_cachedImage;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleImage.h ('k') | third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698