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

Unified Diff: Source/core/layout/api/LineLayoutBox.cpp

Issue 1149953007: Create LineLayout api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed source of crash. Created 5 years, 6 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/LineLayoutBox.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.cpp
diff --git a/Source/core/layout/api/LineLayoutBox.cpp b/Source/core/layout/api/LineLayoutBox.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..643be179ad0a16d00d8940a84d07b047b1cc6ec8
--- /dev/null
+++ b/Source/core/layout/api/LineLayoutBox.cpp
@@ -0,0 +1,43 @@
+// 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.
+
+#include "config.h"
+#include "core/layout/api/LineLayoutBox.h"
+
+#include "core/layout/LayoutBox.h"
+
+namespace blink {
+
+LineLayoutBox::LineLayoutBox(LayoutBox* layoutBox)
+ : LineLayoutItem(layoutBox)
+{
+}
+
+LineLayoutBox::LineLayoutBox(const LineLayoutItem& item)
+ : LineLayoutItem(item)
+{
+ ASSERT(!item.layoutObject() || item.layoutObject()->isBox());
+}
+
+void LineLayoutBox::setLogicalHeight(LayoutUnit size)
+{
+ box()->setLogicalHeight(size);
+}
+
+LayoutUnit LineLayoutBox::logicalHeight() const
+{
+ return box()->logicalHeight();
+}
+
+LayoutBox* LineLayoutBox::box()
+{
+ return toLayoutBox(layoutObject());
+}
+
+const LayoutBox* LineLayoutBox::box() const
+{
+ return toLayoutBox(layoutObject());
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/layout/api/LineLayoutBox.h ('k') | Source/core/layout/api/LineLayoutInline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698