| Index: third_party/WebKit/Source/core/loader/HistoryItem.h
|
| diff --git a/third_party/WebKit/Source/core/loader/HistoryItem.h b/third_party/WebKit/Source/core/loader/HistoryItem.h
|
| index 20f7491cb051f38674a046fb545a6d824e76fbed..c5b9c74fa3ee5152dd760a145c2057050c1ab799 100644
|
| --- a/third_party/WebKit/Source/core/loader/HistoryItem.h
|
| +++ b/third_party/WebKit/Source/core/loader/HistoryItem.h
|
| @@ -45,11 +45,11 @@ class EncodedFormData;
|
| class KURL;
|
| class ResourceRequest;
|
|
|
| -class CORE_EXPORT HistoryItem final : public RefCountedWillBeGarbageCollectedFinalized<HistoryItem> {
|
| +class CORE_EXPORT HistoryItem final : public GarbageCollectedFinalized<HistoryItem> {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HistoryItem> create()
|
| + static RawPtr<HistoryItem> create()
|
| {
|
| - return adoptRefWillBeNoop(new HistoryItem);
|
| + return (new HistoryItem);
|
| }
|
| ~HistoryItem();
|
|
|
| @@ -112,7 +112,7 @@ private:
|
| IntPoint m_scrollPoint;
|
| float m_pageScaleFactor;
|
| Vector<String> m_documentStateVector;
|
| - RefPtrWillBeMember<DocumentState> m_documentState;
|
| + Member<DocumentState> m_documentState;
|
|
|
| // If two HistoryItems have the same item sequence number, then they are
|
| // clones of one another. Traversing history from one such HistoryItem to
|
|
|