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

Side by Side Diff: Source/core/layout/api/LineLayoutBox.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/LineLayoutBlockFlow.h ('k') | Source/core/layout/api/LineLayoutInline.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 LineLayoutBox_h
6 #define LineLayoutBox_h
7
8 #include "core/layout/LayoutBox.h"
9 #include "core/layout/api/LineLayoutItem.h"
10 #include "platform/LayoutUnit.h"
11
12 namespace blink {
13
14 class LayoutBox;
15
16 class LineLayoutBox : public LineLayoutItem {
17 public:
18 explicit LineLayoutBox(LayoutBox* layoutBox)
19 : LineLayoutItem(layoutBox)
20 {
21 }
22
23 LineLayoutBox(const LineLayoutItem& item)
24 : LineLayoutItem(item)
25 {
26 ASSERT(!item || item.isBox());
27 }
28
29 LineLayoutBox() { }
30
31 void setLogicalHeight(LayoutUnit size)
32 {
33 toBox()->setLogicalHeight(size);
34 }
35
36 LayoutUnit logicalHeight() const
37 {
38 return toBox()->logicalHeight();
39 }
40
41 private:
42 LayoutBox* toBox()
43 {
44 return toLayoutBox(layoutObject());
45 }
46
47 const LayoutBox* toBox() const
48 {
49 return toLayoutBox(layoutObject());
50 }
51 };
52
53 } // namespace blink
54
55 #endif // LineLayoutBox_h
OLDNEW
« no previous file with comments | « Source/core/layout/api/LineLayoutBlockFlow.h ('k') | Source/core/layout/api/LineLayoutInline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698