| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index fc41acfc6b21e5c3e0dcf96fb595e8b483f3df4c..d1d7afe4f92082c25babf6e5de49ef271fa3123d 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -315,7 +315,7 @@ void FrameLoaderClientImpl::willBeDetached()
|
| m_webFrame->willBeDetached();
|
| }
|
|
|
| -void FrameLoaderClientImpl::detached()
|
| +void FrameLoaderClientImpl::detached(FrameDetachType type)
|
| {
|
| // Alert the client that the frame is being detached. This is the last
|
| // chance we have to communicate with the client.
|
| @@ -331,7 +331,7 @@ void FrameLoaderClientImpl::detached()
|
| // place at this point since we are no longer associated with the Page.
|
| m_webFrame->setClient(0);
|
|
|
| - client->frameDetached(m_webFrame);
|
| + client->frameDetached(m_webFrame, static_cast<WebFrameClient::DetachType>(type));
|
| // Clear our reference to LocalFrame at the very end, in case the client
|
| // refers to it.
|
| m_webFrame->setCoreFrame(nullptr);
|
|
|