| Index: Source/core/frame/LocalFrame.cpp
|
| diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp
|
| index edd58bd52392b820387fa793d139f5e92d9a2a43..fba2db59fa604f575f96725521c4d9681becdc7b 100644
|
| --- a/Source/core/frame/LocalFrame.cpp
|
| +++ b/Source/core/frame/LocalFrame.cpp
|
| @@ -260,7 +260,7 @@ void LocalFrame::reload(ReloadPolicy reloadPolicy, ClientRedirectPolicy clientRe
|
| m_navigationScheduler.scheduleReload();
|
| }
|
|
|
| -void LocalFrame::detach()
|
| +void LocalFrame::detach(DetachType type)
|
| {
|
| // A lot of the following steps can result in the current frame being
|
| // detached, so protect a reference to it.
|
| @@ -286,7 +286,7 @@ void LocalFrame::detach()
|
| setView(nullptr);
|
| willDetachFrameHost();
|
| InspectorInstrumentation::frameDetachedFromParent(this);
|
| - Frame::detach();
|
| + Frame::detach(type);
|
|
|
| // Signal frame destruction here rather than in the destructor.
|
| // Main motivation is to avoid being dependent on its exact timing (Oilpan.)
|
|
|