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

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

Issue 2735183003: PlzNavigate: stop navigations when opening a document for write (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 3fa8a3f555a870bc50c7390dd53538b0398635b4..58a2f69852d7b20a5b5e8d7a8690c14ec7cee9b1 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -2167,6 +2167,11 @@ void WebLocalFrameImpl::mixedContentFound(
wasAllowed, hadRedirect);
}
+void WebLocalFrameImpl::clientDroppedNavigation() {
+ if (frame())
+ frame()->loader().clientDroppedNavigation();
+}
+
void WebLocalFrameImpl::sendOrientationChangeEvent() {
if (!frame())
return;

Powered by Google App Engine
This is Rietveld 408576698