| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010-2012. 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 void UpdateLayout() override; | 78 void UpdateLayout() override; |
| 79 | 79 |
| 80 void AbsoluteQuads(Vector<FloatQuad>&, | 80 void AbsoluteQuads(Vector<FloatQuad>&, |
| 81 MapCoordinatesFlags mode = 0) const override; | 81 MapCoordinatesFlags mode = 0) const override; |
| 82 | 82 |
| 83 void AddChild(LayoutObject* child, | 83 void AddChild(LayoutObject* child, |
| 84 LayoutObject* before_child = nullptr) override; | 84 LayoutObject* before_child = nullptr) override; |
| 85 void RemoveChild(LayoutObject*) override; | 85 void RemoveChild(LayoutObject*) override; |
| 86 void WillBeDestroyed() override; | 86 void WillBeDestroyed() override; |
| 87 | 87 |
| 88 void InvalidateTreeIfNeeded(const PaintInvalidationState&) override; | 88 void DeprecatedInvalidateTree(const PaintInvalidationState&) override; |
| 89 | 89 |
| 90 RootInlineBox* CreateRootInlineBox() override; | 90 RootInlineBox* CreateRootInlineBox() override; |
| 91 | 91 |
| 92 void InvalidatePositioningValues(LayoutInvalidationReasonForTracing); | 92 void InvalidatePositioningValues(LayoutInvalidationReasonForTracing); |
| 93 | 93 |
| 94 bool needs_reordering_ : 1; | 94 bool needs_reordering_ : 1; |
| 95 bool needs_positioning_values_update_ : 1; | 95 bool needs_positioning_values_update_ : 1; |
| 96 bool needs_transform_update_ : 1; | 96 bool needs_transform_update_ : 1; |
| 97 bool needs_text_metrics_update_ : 1; | 97 bool needs_text_metrics_update_ : 1; |
| 98 Vector<LayoutSVGInlineText*> descendant_text_nodes_; | 98 Vector<LayoutSVGInlineText*> descendant_text_nodes_; |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGText, IsSVGText()); | 101 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGText, IsSVGText()); |
| 102 | 102 |
| 103 } // namespace blink | 103 } // namespace blink |
| 104 | 104 |
| 105 #endif | 105 #endif |
| OLD | NEW |