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

Unified Diff: third_party/WebKit/Source/core/style/StyleFetchedImage.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/style/StyleFetchedImage.h
diff --git a/third_party/WebKit/Source/core/style/StyleFetchedImage.h b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
index 9f9fdd4cd179df3997aabb5c1d17cbeeac87d3f1..7150261c8a4f977b8d3fa5f61f703ee42fabf51d 100644
--- a/third_party/WebKit/Source/core/style/StyleFetchedImage.h
+++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
@@ -25,7 +25,6 @@
#define StyleFetchedImage_h
#include "core/fetch/ImageResourceClient.h"
-#include "core/fetch/ResourcePtr.h"
#include "core/style/StyleImage.h"
namespace blink {
@@ -70,7 +69,7 @@ private:
void dispose();
- ResourcePtr<ImageResource> m_image;
+ RefPtrWillBeMember<ImageResource> m_image;
RawPtrWillBeMember<Document> m_document;
const KURL m_url;
};

Powered by Google App Engine
This is Rietveld 408576698