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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2694013005: Cleanup blink-side PlzNavigate logic (Closed)
Patch Set: Rebase Created 3 years, 9 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
Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index 917372c4c24e4ad7afacbbdbee4de0cf9e75af72..cb38d4bac6eddaab09f30c0080a9bf208f8f4848 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -2069,8 +2069,8 @@ bool WebLocalFrameImpl::maybeRenderFallbackContent(
return false;
FrameLoader& frameloader = frame()->loader();
- frameloader.clearNavigationHandledByClient();
- frameloader.loadFailed(frameloader.documentLoader(), error);
+ DCHECK(frameloader.provisionalDocumentLoader());
+ frameloader.loadFailed(frameloader.provisionalDocumentLoader(), error);
return true;
}
« no previous file with comments | « third_party/WebKit/Source/core/loader/ProgressTracker.cpp ('k') | third_party/WebKit/public/web/WebNavigationPolicy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698