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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp

Issue 2632633006: Implement NavigationThrottle::BLOCK_REQUEST_AND_COLLAPSE. (Closed)
Patch Set: Rebase. Created 3 years, 7 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/core/html/HTMLFrameOwnerElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
index db5edd50ba280da15bdc545b2751c8f154053034..c1b3208d00bb44f5d1e495cfa7ebc9b9c80e9e3f 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
@@ -161,6 +161,7 @@ void HTMLFrameOwnerElement::SetContentFrame(Frame& frame) {
DCHECK(!content_frame_ || content_frame_->Owner() != this);
// Disconnected frames should not be allowed to load.
DCHECK(isConnected());
+
dcheng 2017/05/10 06:59:46 Revert this, it's not a bad formatting cleanup, bu
engedy 2017/05/15 13:35:51 Done, sorry for not noticing this.
content_frame_ = &frame;
for (ContainerNode* node = this; node; node = node->ParentOrShadowHostNode())

Powered by Google App Engine
This is Rietveld 408576698