Chromium Code Reviews| Index: Source/core/loader/FrameLoader.cpp |
| diff --git a/Source/core/loader/FrameLoader.cpp b/Source/core/loader/FrameLoader.cpp |
| index d30381816e394784adbab83d4f7480a317701995..0cc4801b3fc93292853195e6554b456b4bbb59eb 100644 |
| --- a/Source/core/loader/FrameLoader.cpp |
| +++ b/Source/core/loader/FrameLoader.cpp |
| @@ -479,7 +479,8 @@ void FrameLoader::finishedParsing() |
| // Null-checking the FrameView indicates whether or not we're in the destructor. |
| RefPtrWillBeRawPtr<LocalFrame> protect(m_frame->view() ? m_frame.get() : nullptr); |
| - m_progressTracker->finishedParsing(); |
| + if (m_progressTracker) |
|
Nate Chapin
2015/08/17 17:01:58
Is there any work that needs to be done in the fra
sof
2015/08/18 05:24:13
It won't do any work before the detach check just
|
| + m_progressTracker->finishedParsing(); |
| if (client()) |
| client()->dispatchDidFinishDocumentLoad(m_documentLoader->isCommittedButEmpty()); |