| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 #ifndef SVGRenderSupport_h | 24 #ifndef SVGRenderSupport_h |
| 25 #define SVGRenderSupport_h | 25 #define SVGRenderSupport_h |
| 26 | 26 |
| 27 namespace WebCore { | 27 namespace WebCore { |
| 28 | 28 |
| 29 class AffineTransform; | 29 class AffineTransform; |
| 30 class FloatPoint; | 30 class FloatPoint; |
| 31 class FloatRect; | 31 class FloatRect; |
| 32 class GraphicsContext; | 32 class GraphicsContext; |
| 33 class ImageBuffer; | |
| 34 class LayoutRect; | 33 class LayoutRect; |
| 35 struct PaintInfo; | 34 struct PaintInfo; |
| 36 class RenderBoxModelObject; | |
| 37 class RenderGeometryMap; | 35 class RenderGeometryMap; |
| 38 class RenderLayerModelObject; | 36 class RenderLayerModelObject; |
| 39 class RenderObject; | 37 class RenderObject; |
| 40 class RenderStyle; | 38 class RenderStyle; |
| 41 class RenderSVGRoot; | 39 class RenderSVGRoot; |
| 42 class StrokeData; | 40 class StrokeData; |
| 43 class TransformState; | 41 class TransformState; |
| 44 | 42 |
| 45 class SVGRenderSupport { | 43 class SVGRenderSupport { |
| 46 public: | 44 public: |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 89 |
| 92 private: | 90 private: |
| 93 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje
ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); | 91 static void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& obje
ctBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox); |
| 94 static void invalidateResourcesOfChildren(RenderObject* start); | 92 static void invalidateResourcesOfChildren(RenderObject* start); |
| 95 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); | 93 static bool layoutSizeOfNearestViewportChanged(const RenderObject* start); |
| 96 }; | 94 }; |
| 97 | 95 |
| 98 } // namespace WebCore | 96 } // namespace WebCore |
| 99 | 97 |
| 100 #endif // SVGRenderSupport_h | 98 #endif // SVGRenderSupport_h |
| OLD | NEW |