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

Side by Side Diff: Source/core/rendering/RenderFrameSet.h

Issue 241713002: Remove some dead code from rendering/ folder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderFlowThread.cpp ('k') | Source/core/rendering/RenderFrameSet.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Simon Hausmann <hausmann@kde.org> 3 * (C) 2000 Simon Hausmann <hausmann@kde.org>
4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. 4 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } 62 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
63 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r eturn children()->lastChild(); } 63 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); r eturn children()->lastChild(); }
64 64
65 const RenderObjectChildList* children() const { return &m_children; } 65 const RenderObjectChildList* children() const { return &m_children; }
66 RenderObjectChildList* children() { return &m_children; } 66 RenderObjectChildList* children() { return &m_children; }
67 67
68 FrameEdgeInfo edgeInfo() const; 68 FrameEdgeInfo edgeInfo() const;
69 69
70 bool userResize(MouseEvent*); 70 bool userResize(MouseEvent*);
71 71
72 bool isResizingRow() const;
73 bool isResizingColumn() const;
74
75 bool canResizeRow(const IntPoint&) const; 72 bool canResizeRow(const IntPoint&) const;
76 bool canResizeColumn(const IntPoint&) const; 73 bool canResizeColumn(const IntPoint&) const;
77 74
78 void notifyFrameEdgeInfoChanged(); 75 void notifyFrameEdgeInfoChanged();
79 76
80 private: 77 private:
81 static const int noSplit = -1; 78 static const int noSplit = -1;
82 79
83 class GridAxis { 80 class GridAxis {
84 WTF_MAKE_NONCOPYABLE(GridAxis); 81 WTF_MAKE_NONCOPYABLE(GridAxis);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 127
131 bool m_isResizing; 128 bool m_isResizing;
132 bool m_isChildResizing; 129 bool m_isChildResizing;
133 }; 130 };
134 131
135 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFrameSet, isFrameSet()); 132 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFrameSet, isFrameSet());
136 133
137 } // namespace WebCore 134 } // namespace WebCore
138 135
139 #endif // RenderFrameSet_h 136 #endif // RenderFrameSet_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderFlowThread.cpp ('k') | Source/core/rendering/RenderFrameSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698