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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/api/LineLayoutBlockFlow.h ('k') | Source/core/layout/api/LineLayoutInline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/api/LineLayoutBox.h
diff --git a/Source/core/layout/api/LineLayoutBox.h b/Source/core/layout/api/LineLayoutBox.h
new file mode 100644
index 0000000000000000000000000000000000000000..0ccd1fd49e3e6680093fcf223da24c5c9beee43c
--- /dev/null
+++ b/Source/core/layout/api/LineLayoutBox.h
@@ -0,0 +1,55 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef LineLayoutBox_h
+#define LineLayoutBox_h
+
+#include "core/layout/LayoutBox.h"
+#include "core/layout/api/LineLayoutItem.h"
+#include "platform/LayoutUnit.h"
+
+namespace blink {
+
+class LayoutBox;
+
+class LineLayoutBox : public LineLayoutItem {
+public:
+ explicit LineLayoutBox(LayoutBox* layoutBox)
+ : LineLayoutItem(layoutBox)
+ {
+ }
+
+ LineLayoutBox(const LineLayoutItem& item)
+ : LineLayoutItem(item)
+ {
+ ASSERT(!item || item.isBox());
+ }
+
+ LineLayoutBox() { }
+
+ void setLogicalHeight(LayoutUnit size)
+ {
+ toBox()->setLogicalHeight(size);
+ }
+
+ LayoutUnit logicalHeight() const
+ {
+ return toBox()->logicalHeight();
+ }
+
+private:
+ LayoutBox* toBox()
+ {
+ return toLayoutBox(layoutObject());
+ }
+
+ const LayoutBox* toBox() const
+ {
+ return toLayoutBox(layoutObject());
+ }
+};
+
+} // namespace blink
+
+#endif // LineLayoutBox_h
« 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