| 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..4bc41dc0624857981924d85d38242cdc350ca7d7 | 
| --- /dev/null | 
| +++ b/Source/core/layout/api/LineLayoutInline.h | 
| @@ -0,0 +1,49 @@ | 
| +// 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: | 
| +    LineLayoutInline(LayoutInline*); | 
| +    LineLayoutInline(const LineLayoutItem&); | 
| +    LineLayoutInline() { } | 
| + | 
| +    LineLayoutItem firstChild() const | 
| +    { | 
| +        return toInline()->firstChild(); | 
| +    } | 
| + | 
| +    LineLayoutItem lastChild() const | 
| +    { | 
| +        return toInline()->lastChild(); | 
| +    } | 
| + | 
| +protected: | 
| +    LayoutInline* toInline() | 
| +    { | 
| +        return toLayoutInline(layoutObject()); | 
| +    } | 
| + | 
| +    const LayoutInline* toInline() const | 
| +    { | 
| +        return toLayoutInline(layoutObject()); | 
| +    } | 
| + | 
| +}; | 
| + | 
| +} // namespace blink | 
| + | 
| +#endif // LineLayoutInline_h | 
|  |