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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutImageResource.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/layout/LayoutImageResource.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutImageResource.h b/third_party/WebKit/Source/core/layout/LayoutImageResource.h
index 9680c5aa5365e2a7270f976abffa39fd293b94ad..a7d3a5d004c0402f655cd5cd861922f7e7463d98 100644
--- a/third_party/WebKit/Source/core/layout/LayoutImageResource.h
+++ b/third_party/WebKit/Source/core/layout/LayoutImageResource.h
@@ -33,13 +33,12 @@ namespace blink {
class LayoutObject;
-class LayoutImageResource : public NoBaseWillBeGarbageCollectedFinalized<LayoutImageResource> {
+class LayoutImageResource : public GarbageCollectedFinalized<LayoutImageResource> {
WTF_MAKE_NONCOPYABLE(LayoutImageResource);
- USING_FAST_MALLOC_WILL_BE_REMOVED(LayoutImageResource);
public:
virtual ~LayoutImageResource();
- static PassOwnPtrWillBeRawPtr<LayoutImageResource> create()
+ static RawPtr<LayoutImageResource> create()
{
return adoptPtrWillBeNoop(new LayoutImageResource);
}
@@ -68,7 +67,7 @@ public:
protected:
LayoutImageResource();
LayoutObject* m_layoutObject;
- RefPtrWillBeMember<ImageResource> m_cachedImage;
+ Member<ImageResource> m_cachedImage;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698