| Index: Source/web/RemoteFrameClientImpl.cpp
|
| diff --git a/Source/web/RemoteFrameClientImpl.cpp b/Source/web/RemoteFrameClientImpl.cpp
|
| index a2994e71cb2f15f2ddc09e27d439474fba297eb6..a720d0bda6a7ee25cd960d8b0118d3be677244dc 100644
|
| --- a/Source/web/RemoteFrameClientImpl.cpp
|
| +++ b/Source/web/RemoteFrameClientImpl.cpp
|
| @@ -35,7 +35,7 @@ void RemoteFrameClientImpl::willBeDetached()
|
| {
|
| }
|
|
|
| -void RemoteFrameClientImpl::detached()
|
| +void RemoteFrameClientImpl::detached(FrameDetachType type)
|
| {
|
| // Alert the client that the frame is being detached.
|
| RefPtrWillBeRawPtr<WebRemoteFrameImpl> protector(m_webFrame);
|
| @@ -44,7 +44,7 @@ void RemoteFrameClientImpl::detached()
|
| if (!client)
|
| return;
|
|
|
| - client->frameDetached();
|
| + client->frameDetached(static_cast<WebRemoteFrameClient::DetachType>(type));
|
| // Clear our reference to RemoteFrame at the very end, in case the client
|
| // refers to it.
|
| m_webFrame->setCoreFrame(nullptr);
|
|
|