| 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
|
|
|