| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> | 2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> |
| 3 * Copyright (C) 2006 Apple Computer Inc. | 3 * Copyright (C) 2006 Apple Computer Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 FloatRect paintInvalidationRectInLocalSVGCoordinates() const final; | 45 FloatRect paintInvalidationRectInLocalSVGCoordinates() const final; |
| 46 | 46 |
| 47 LayoutRect absoluteClippedOverflowRect() const final; | 47 LayoutRect absoluteClippedOverflowRect() const final; |
| 48 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState
&, MapCoordinatesFlags = ApplyContainerFlip) const final; | 48 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState
&, MapCoordinatesFlags = ApplyContainerFlip) const final; |
| 49 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances
torToStopAt, LayoutGeometryMap&) const final; | 49 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances
torToStopAt, LayoutGeometryMap&) const final; |
| 50 void absoluteQuads(Vector<FloatQuad>&) const final; | 50 void absoluteQuads(Vector<FloatQuad>&) const final; |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 InlineFlowBox* createInlineFlowBox() final; | 53 InlineFlowBox* createInlineFlowBox() final; |
| 54 | 54 |
| 55 void invalidateTreeIfNeeded(const PaintInvalidationState&) final; | |
| 56 | |
| 57 void willBeDestroyed() final; | 55 void willBeDestroyed() final; |
| 58 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final; | 56 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) final; |
| 59 | 57 |
| 60 void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) fina
l; | 58 void addChild(LayoutObject* child, LayoutObject* beforeChild = nullptr) fina
l; |
| 61 void removeChild(LayoutObject*) final; | 59 void removeChild(LayoutObject*) final; |
| 62 }; | 60 }; |
| 63 | 61 |
| 64 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGInline, isSVGInline()); | 62 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGInline, isSVGInline()); |
| 65 | 63 |
| 66 } // namespace blink | 64 } // namespace blink |
| 67 | 65 |
| 68 #endif // LayoutSVGInline_H | 66 #endif // LayoutSVGInline_H |
| OLD | NEW |