Index: Source/web/FrameLoaderClientImpl.cpp |
diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp |
index 096eb4f301f0fb68f767a65f58e36d0d29b90ffb..8858c025cbb2ed12d726fdce41e6fe7024eb3685 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, |