| Index: third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
|
| index 976a6f63c8ae602c39ba3769f9bc779c8ac6406f..abfa832a1344677b27aa188d9ae5285a41a1f088 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
|
| @@ -399,7 +399,7 @@ void LocalDOMWindow::documentWasClosed() {
|
| dispatchWindowLoadEvent();
|
| enqueuePageshowEvent(PageshowEventNotPersisted);
|
| if (m_pendingStateObject)
|
| - enqueuePopstateEvent(m_pendingStateObject.release());
|
| + enqueuePopstateEvent(std::move(m_pendingStateObject));
|
| }
|
|
|
| void LocalDOMWindow::enqueuePageshowEvent(PageshowEventPersistence persisted) {
|
|
|