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..3bb2df381a4e8bb39748b7d6f9679a854d67223c |
--- /dev/null |
+++ b/Source/core/layout/api/LineLayoutInline.h |
@@ -0,0 +1,33 @@ |
+// 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/api/LineLayoutItem.h" |
+#include "platform/LayoutUnit.h" |
+ |
+namespace blink { |
+ |
+class ComputedStyle; |
+class LayoutInline; |
+class LayoutObject; |
+ |
+class LineLayoutInline : public LineLayoutItem { |
+public: |
+ LineLayoutInline(LayoutInline*); |
+ LineLayoutInline(const LineLayoutItem&); |
+ LineLayoutInline() { } |
+ |
+ LineLayoutItem firstChild() const; |
+ LineLayoutItem lastChild() const; |
+ |
+protected: |
+ LayoutInline* toInline(); |
+ const LayoutInline* toInline() const; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // LineLayoutInline_h |