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

Unified Diff: Source/core/page/FrameTree.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 5 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
« no previous file with comments | « Source/core/page/FrameActionScheduler.cpp ('k') | Source/core/page/FrameTree.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/FrameTree.h
diff --git a/Source/core/page/FrameTree.h b/Source/core/page/FrameTree.h
index 3d31eb0cc04707c8a0c9585e3fd88bbb06859369..ac2886fc707125cbc156a5f8146d81d21c8360d0 100644
--- a/Source/core/page/FrameTree.h
+++ b/Source/core/page/FrameTree.h
@@ -32,7 +32,7 @@ namespace WebCore {
public:
const static unsigned invalidCount = static_cast<unsigned>(-1);
- FrameTree(Frame* thisFrame, Frame* parentFrame)
+ FrameTree(Frame* thisFrame, Frame* parentFrame)
: m_thisFrame(thisFrame)
, m_parent(parentFrame)
, m_previousSibling(0)
@@ -49,7 +49,7 @@ namespace WebCore {
void clearName();
Frame* parent() const;
void setParent(Frame* parent) { m_parent = parent; }
-
+
Frame* nextSibling() const { return m_nextSibling.get(); }
Frame* previousSibling() const { return m_previousSibling; }
Frame* firstChild() const { return m_firstChild.get(); }
@@ -59,7 +59,7 @@ namespace WebCore {
Frame* traverseNext(const Frame* stayWithin = 0) const;
Frame* traverseNextWithWrap(bool) const;
Frame* traversePreviousWithWrap(bool) const;
-
+
void appendChild(PassRefPtr<Frame>);
bool transferChild(PassRefPtr<Frame>);
void detachFromParent() { m_parent = 0; }
« no previous file with comments | « Source/core/page/FrameActionScheduler.cpp ('k') | Source/core/page/FrameTree.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698