| Index: third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.h b/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.h
|
| index bd63596f36915637e80824c969d4dc09bc172830..efe9e11a245bac191520a13cd2c9860ac61f3e9e 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameViewAutoSizeInfo.h
|
| @@ -15,14 +15,12 @@ namespace blink {
|
|
|
| class FrameView;
|
|
|
| -class FrameViewAutoSizeInfo final : public NoBaseWillBeGarbageCollected<FrameViewAutoSizeInfo> {
|
| +class FrameViewAutoSizeInfo final : public GarbageCollected<FrameViewAutoSizeInfo> {
|
| WTF_MAKE_NONCOPYABLE(FrameViewAutoSizeInfo);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(FrameViewAutoSizeInfo);
|
| - DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(FrameViewAutoSizeInfo);
|
| public:
|
| - static PassOwnPtrWillBeRawPtr<FrameViewAutoSizeInfo> create(FrameView* frameView)
|
| + static RawPtr<FrameViewAutoSizeInfo> create(FrameView* frameView)
|
| {
|
| - return adoptPtrWillBeNoop(new FrameViewAutoSizeInfo(frameView));
|
| + return new FrameViewAutoSizeInfo(frameView);
|
| }
|
|
|
| void configureAutoSizeMode(const IntSize& minSize, const IntSize& maxSize);
|
| @@ -33,7 +31,7 @@ public:
|
| private:
|
| explicit FrameViewAutoSizeInfo(FrameView*);
|
|
|
| - RawPtrWillBeMember<FrameView> m_frameView;
|
| + Member<FrameView> m_frameView;
|
|
|
| // The lower bound on the size when autosizing.
|
| IntSize m_minAutoSize;
|
|
|