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

Unified Diff: third_party/WebKit/Source/core/frame/Frame.h

Issue 2393313002: reflow comments in core/frame (Closed)
Patch Set: tweak 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/frame/Frame.h
diff --git a/third_party/WebKit/Source/core/frame/Frame.h b/third_party/WebKit/Source/core/frame/Frame.h
index c48969163257108fc3d72fbf5299358a7c458efd..e539261a4249f784984a4f4824809001ad0742fa 100644
--- a/third_party/WebKit/Source/core/frame/Frame.h
+++ b/third_party/WebKit/Source/core/frame/Frame.h
@@ -5,7 +5,8 @@
* 2000-2001 Simon Hausmann <hausmann@kde.org>
* 2000-2001 Dirk Mueller <mueller@kde.org>
* 2000 Stefan Schimanski <1Stein@gmx.de>
- * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
+ * reserved.
* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
*
@@ -121,8 +122,8 @@ class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
virtual void printNavigationErrorMessage(const Frame&,
const char* reason) = 0;
- // TODO(pilgrim) replace all instances of ownerLayoutObject() with ownerLayoutItem()
- // https://crbug.com/499321
+ // TODO(pilgrim): Replace all instances of ownerLayoutObject() with
+ // ownerLayoutItem(), https://crbug.com/499321
LayoutPart* ownerLayoutObject()
const; // LayoutObject for the element that contains this frame.
LayoutPartItem ownerLayoutItem() const;
@@ -130,9 +131,9 @@ class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
Settings* settings() const; // can be null
// isLoading() is true when the embedder should think a load is in progress.
- // In the case of LocalFrames, it means that the frame has sent a didStartLoading()
- // callback, but not the matching didStopLoading(). Inside blink, you probably
- // want Document::loadEventFinished() instead.
+ // In the case of LocalFrames, it means that the frame has sent a
+ // didStartLoading() callback, but not the matching didStopLoading(). Inside
+ // blink, you probably want Document::loadEventFinished() instead.
void setIsLoading(bool isLoading) { m_isLoading = isLoading; }
bool isLoading() const { return m_isLoading; }
@@ -167,7 +168,8 @@ inline FrameTree& Frame::tree() const {
return m_treeNode;
}
-// Allow equality comparisons of Frames by reference or pointer, interchangeably.
+// Allow equality comparisons of Frames by reference or pointer,
+// interchangeably.
DEFINE_COMPARISON_OPERATORS_WITH_REFERENCES(Frame)
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/EventHandlerRegistry.cpp ('k') | third_party/WebKit/Source/core/frame/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698