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

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

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments 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/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 06a15fb434ac3a27519feb050117a8d8b23d5ade..cebcc0b20d7aba39bb64b8c0c9697deed0f4a954 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.cpp
@@ -152,7 +152,8 @@ LayoutPart* HTMLFrameOwnerElement::layoutPart() const {
}
void HTMLFrameOwnerElement::setContentFrame(Frame& frame) {
- // Make sure we will not end up with two frames referencing the same owner element.
+ // Make sure we will not end up with two frames referencing the same owner
+ // element.
DCHECK(!m_contentFrame || m_contentFrame->owner() != this);
// Disconnected frames should not be allowed to load.
DCHECK(isConnected());

Powered by Google App Engine
This is Rietveld 408576698