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

Unified 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 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/LineLayoutItem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/api/LineLayoutInline.h
diff --git a/Source/core/layout/api/LineLayoutInline.h b/Source/core/layout/api/LineLayoutInline.h
new file mode 100644
index 0000000000000000000000000000000000000000..5221557a03cf2eeadbf203a1757a035aed3cbfc0
--- /dev/null
+++ b/Source/core/layout/api/LineLayoutInline.h
@@ -0,0 +1,58 @@
+// 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 LineLayoutInline_h
+#define LineLayoutInline_h
+
+#include "core/layout/LayoutInline.h"
+#include "core/layout/api/LineLayoutItem.h"
+#include "platform/LayoutUnit.h"
+
+namespace blink {
+
+class ComputedStyle;
+class LayoutInline;
+class LayoutObject;
+
+class LineLayoutInline : public LineLayoutItem {
+public:
+ explicit LineLayoutInline(LayoutInline* layoutInline)
+ : LineLayoutItem(layoutInline)
+ {
+ }
+
+ LineLayoutInline(const LineLayoutItem& item)
+ : LineLayoutItem(item)
+ {
+ ASSERT(!item || item.isLayoutInline());
+ }
+
+ LineLayoutInline() { }
+
+ LineLayoutItem firstChild() const
+ {
+ return LineLayoutItem(toInline()->firstChild());
+ }
+
+ LineLayoutItem lastChild() const
+ {
+ return LineLayoutItem(toInline()->lastChild());
+ }
+
+protected:
+ LayoutInline* toInline()
+ {
+ return toLayoutInline(layoutObject());
+ }
+
+ const LayoutInline* toInline() const
+ {
+ return toLayoutInline(layoutObject());
+ }
+
+};
+
+} // namespace blink
+
+#endif // LineLayoutInline_h
« 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