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

Side by Side Diff: Source/core/layout/api/LineLayoutInline.h

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/layout/api/LineLayoutBox.h ('k') | Source/core/layout/api/LineLayoutItem.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef LineLayoutInline_h
6 #define LineLayoutInline_h
7
8 #include "core/layout/LayoutInline.h"
9 #include "core/layout/api/LineLayoutItem.h"
10 #include "platform/LayoutUnit.h"
11
12 namespace blink {
13
14 class ComputedStyle;
15 class LayoutInline;
16 class LayoutObject;
17
18 class LineLayoutInline : public LineLayoutItem {
19 public:
20 explicit LineLayoutInline(LayoutInline* layoutInline)
21 : LineLayoutItem(layoutInline)
22 {
23 }
24
25 LineLayoutInline(const LineLayoutItem& item)
26 : LineLayoutItem(item)
27 {
28 ASSERT(!item || item.isLayoutInline());
29 }
30
31 LineLayoutInline() { }
32
33 LineLayoutItem firstChild() const
34 {
35 return LineLayoutItem(toInline()->firstChild());
36 }
37
38 LineLayoutItem lastChild() const
39 {
40 return LineLayoutItem(toInline()->lastChild());
41 }
42
43 protected:
44 LayoutInline* toInline()
45 {
46 return toLayoutInline(layoutObject());
47 }
48
49 const LayoutInline* toInline() const
50 {
51 return toLayoutInline(layoutObject());
52 }
53
54 };
55
56 } // namespace blink
57
58 #endif // LineLayoutInline_h
OLDNEW
« no previous file with comments | « Source/core/layout/api/LineLayoutBox.h ('k') | Source/core/layout/api/LineLayoutItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698