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

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

Issue 2428803002: Don't send loading completion callbacks for detaching frames. (Closed)
Patch Set: . Created 4 years, 2 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 58ada7277f3b6b973e9ec7388aaada886650367e..6ed922c331b517f32549c6ffb41da523db6be3a8 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -2060,11 +2060,6 @@ bool WebLocalFrameImpl::isLoading() const {
!frame()->document()->loadEventFinished();
}
-bool WebLocalFrameImpl::
- isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() const {
- return !frame() || frame()->isDetaching();
-}
-
bool WebLocalFrameImpl::isNavigationScheduledWithin(
double intervalInSeconds) const {
return frame() &&

Powered by Google App Engine
This is Rietveld 408576698