OLD | NEW |
1 /** | 1 /** |
2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2009 Google, Inc. All rights reserved. | 5 * Copyright (C) 2009 Google, Inc. All rights reserved. |
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 21 matching lines...) Expand all Loading... |
32 class GraphicsContext; | 32 class GraphicsContext; |
33 class PaintInvalidationState; | 33 class PaintInvalidationState; |
34 class LayoutRect; | 34 class LayoutRect; |
35 struct PaintInfo; | 35 struct PaintInfo; |
36 class Path; | 36 class Path; |
37 class RenderGeometryMap; | 37 class RenderGeometryMap; |
38 class RenderLayerModelObject; | 38 class RenderLayerModelObject; |
39 class RenderObject; | 39 class RenderObject; |
40 class RenderStyle; | 40 class RenderStyle; |
41 class RenderSVGRoot; | 41 class RenderSVGRoot; |
42 class RenderSVGShape; | |
43 class StrokeData; | 42 class StrokeData; |
44 class TransformState; | 43 class TransformState; |
45 | 44 |
46 class SVGRenderSupport { | 45 class SVGRenderSupport { |
47 public: | 46 public: |
48 // Shares child layouting code between RenderSVGRoot/RenderSVG(Hidden)Contai
ner | 47 // Shares child layouting code between RenderSVGRoot/RenderSVG(Hidden)Contai
ner |
49 static void layoutChildren(RenderObject*, bool selfNeedsLayout); | 48 static void layoutChildren(RenderObject*, bool selfNeedsLayout); |
50 | 49 |
51 // Layout resources used by this node. | 50 // Layout resources used by this node. |
52 static void layoutResourcesIfNeeded(const RenderObject*); | 51 static void layoutResourcesIfNeeded(const RenderObject*); |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 static bool isRenderableTextNode(const RenderObject*); | 95 static bool isRenderableTextNode(const RenderObject*); |
97 | 96 |
98 private: | 97 private: |
99 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje
ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); | 98 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje
ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); |
100 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); | 99 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); |
101 }; | 100 }; |
102 | 101 |
103 } // namespace blink | 102 } // namespace blink |
104 | 103 |
105 #endif // SVGRenderSupport_h | 104 #endif // SVGRenderSupport_h |
OLD | NEW |