Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(620)

Unified Diff: Source/core/loader/FrameLoader.cpp

Issue 1300693002: Early exit experiment in FrameLoader::finishedParsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FrameLoader.cpp
diff --git a/Source/core/loader/FrameLoader.cpp b/Source/core/loader/FrameLoader.cpp
index d30381816e394784adbab83d4f7480a317701995..48b35718bc36b31513aed6f04ca7d43348a2aedd 100644
--- a/Source/core/loader/FrameLoader.cpp
+++ b/Source/core/loader/FrameLoader.cpp
@@ -471,22 +471,15 @@ void FrameLoader::didBeginDocument(bool dispatch)
void FrameLoader::finishedParsing()
{
- if (m_stateMachine.creatingInitialEmptyDocument())
+ if (m_stateMachine.creatingInitialEmptyDocument() || !m_documentLoader)
return;
- // This can be called from the LocalFrame's destructor, in which case we shouldn't protect ourselves
- // because doing so will cause us to re-enter the destructor when protector goes out of scope.
- // Null-checking the FrameView indicates whether or not we're in the destructor.
- RefPtrWillBeRawPtr<LocalFrame> protect(m_frame->view() ? m_frame.get() : nullptr);
-
+ RefPtrWillBeRawPtr<LocalFrame> protect(m_frame);
m_progressTracker->finishedParsing();
-
- if (client())
- client()->dispatchDidFinishDocumentLoad(m_documentLoader->isCommittedButEmpty());
-
+ client()->dispatchDidFinishDocumentLoad(m_documentLoader->isCommittedButEmpty());
checkCompleted();
- if (!m_frame->view())
+ if (!m_documentLoader)
return; // We are being destroyed by something checkCompleted called.
// Check if the scrollbars are really needed for the content.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698