| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index b76693c6ca71a02fbe1b40291fde72537da8624c..e97404487c4f12a58b58c8071cff77841e6f8898 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -295,7 +295,7 @@ void FrameLoaderClientImpl::detachedFromParent()
|
| {
|
| // Alert the client that the frame is being detached. This is the last
|
| // chance we have to communicate with the client.
|
| - RefPtr<WebLocalFrameImpl> protector(m_webFrame);
|
| + RefPtrWillBeRawPtr<WebLocalFrameImpl> protector(m_webFrame);
|
|
|
| WebFrameClient* client = m_webFrame->client();
|
| if (!client)
|
| @@ -618,7 +618,7 @@ void FrameLoaderClientImpl::transitionToCommittedForNewPage()
|
| m_webFrame->createFrameView();
|
| }
|
|
|
| -PassRefPtr<LocalFrame> FrameLoaderClientImpl::createFrame(
|
| +PassRefPtrWillBeRawPtr<LocalFrame> FrameLoaderClientImpl::createFrame(
|
| const KURL& url,
|
| const AtomicString& name,
|
| const Referrer& referrer,
|
|
|