| Index: third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp b/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
|
| index 29176e62186deb3732b0da3bc65dca5d4f870d88..f4e97732cda2da23ab3a5c1e290e34c9b5fc1124 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/XSSAuditorDelegate.cpp
|
| @@ -107,7 +107,7 @@ void XSSAuditorDelegate::didBlockScript(const XSSInfo& xssInfo)
|
| m_document->addConsoleMessage(ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, xssInfo.buildConsoleError()));
|
|
|
| // stopAllLoaders can detach the LocalFrame, so protect it.
|
| - RefPtrWillBeRawPtr<LocalFrame> protect(m_document->frame());
|
| + RawPtr<LocalFrame> protect(m_document->frame());
|
| FrameLoader& frameLoader = m_document->frame()->loader();
|
| if (xssInfo.m_didBlockEntirePage)
|
| frameLoader.stopAllLoaders();
|
|
|