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

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

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.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp
index d17687ee1f482cc68151f0e457c02e5b84e66632..886594734490a990fa7f2c56189a89ff51578836 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.cpp
@@ -75,7 +75,7 @@ void SVGFEImageElement::clearResourceReferences() {
void SVGFEImageElement::fetchImageResource() {
FetchRequest request(
ResourceRequest(ownerDocument()->completeURL(hrefString())), localName());
- m_cachedImage = ImageResource::fetch(request, document().fetcher());
+ m_cachedImage = ImageResourceContent::fetch(request, document().fetcher());
if (m_cachedImage)
m_cachedImage->addObserver(this);
@@ -135,7 +135,7 @@ void SVGFEImageElement::removedFrom(ContainerNode* rootParent) {
clearResourceReferences();
}
-void SVGFEImageElement::imageNotifyFinished(ImageResource*) {
+void SVGFEImageElement::imageNotifyFinished(ImageResourceContent*) {
if (!isConnected())
return;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFEImageElement.h ('k') | third_party/WebKit/Source/core/svg/SVGImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698