OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 void imageChanged(WrappedImagePtr, const IntRect* = nullptr) final; | 267 void imageChanged(WrappedImagePtr, const IntRect* = nullptr) final; |
268 | 268 |
269 void addAnnotatedRegions(Vector<AnnotatedRegionValue>&) final; | 269 void addAnnotatedRegions(Vector<AnnotatedRegionValue>&) final; |
270 | 270 |
271 void updateFromStyle() final; | 271 void updateFromStyle() final; |
272 | 272 |
273 LayoutInline* clone() const; | 273 LayoutInline* clone() const; |
274 | 274 |
275 LayoutBoxModelObject* continuationBefore(LayoutObject* beforeChild); | 275 LayoutBoxModelObject* continuationBefore(LayoutObject* beforeChild); |
276 | 276 |
| 277 void invalidateDisplayItemClientsOfFirstLine() final; |
| 278 |
277 LayoutObjectChildList m_children; | 279 LayoutObjectChildList m_children; |
278 LineBoxList m_lineBoxes; // All of the line boxes created for this inline fl
ow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. | 280 LineBoxList m_lineBoxes; // All of the line boxes created for this inline fl
ow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. |
279 }; | 281 }; |
280 | 282 |
281 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutInline, isLayoutInline()); | 283 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutInline, isLayoutInline()); |
282 | 284 |
283 } // namespace blink | 285 } // namespace blink |
284 | 286 |
285 #endif // LayoutInline_h | 287 #endif // LayoutInline_h |
OLD | NEW |