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

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

Issue 1667843003: Make Resource RefCountedWillBeGarbageCollectedFinalized, attempt #2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + address review comments Created 4 years, 10 months 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 fe54161ee078787c63c1a655c48ca3e817c2ff58..4df7845a171aec42dbd14ad0b2eb44d17bcdb67a 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGFEImageElement.h
@@ -24,7 +24,6 @@
#include "core/SVGNames.h"
#include "core/fetch/ImageResource.h"
#include "core/fetch/ImageResourceClient.h"
-#include "core/fetch/ResourcePtr.h"
#include "core/svg/SVGAnimatedPreserveAspectRatio.h"
#include "core/svg/SVGFilterPrimitiveStandardAttributes.h"
#include "core/svg/SVGURIReference.h"
@@ -67,7 +66,7 @@ private:
RefPtrWillBeMember<SVGAnimatedPreserveAspectRatio> m_preserveAspectRatio;
- ResourcePtr<ImageResource> m_cachedImage;
+ RefPtrWillBeMember<ImageResource> m_cachedImage;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698