| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@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. | 5 * Copyright (C) 2009 Google, Inc. |
| 6 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2011. 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 27 matching lines...) Expand all Loading... |
| 38 #include "RenderSVGResourceContainer.h" | 38 #include "RenderSVGResourceContainer.h" |
| 39 #include "RenderSVGResourceFilter.h" | 39 #include "RenderSVGResourceFilter.h" |
| 40 #include "RenderView.h" | 40 #include "RenderView.h" |
| 41 #include "SVGLength.h" | 41 #include "SVGLength.h" |
| 42 #include "SVGRenderingContext.h" | 42 #include "SVGRenderingContext.h" |
| 43 #include "SVGResources.h" | 43 #include "SVGResources.h" |
| 44 #include "SVGResourcesCache.h" | 44 #include "SVGResourcesCache.h" |
| 45 #include "SVGSVGElement.h" | 45 #include "SVGSVGElement.h" |
| 46 #include "SVGStyledElement.h" | 46 #include "SVGStyledElement.h" |
| 47 #include "SVGViewSpec.h" | 47 #include "SVGViewSpec.h" |
| 48 #include "TransformState.h" | |
| 49 #include "core/platform/graphics/GraphicsContext.h" | 48 #include "core/platform/graphics/GraphicsContext.h" |
| 49 #include "core/platform/graphics/transforms/TransformState.h" |
| 50 | 50 |
| 51 using namespace std; | 51 using namespace std; |
| 52 | 52 |
| 53 namespace WebCore { | 53 namespace WebCore { |
| 54 | 54 |
| 55 RenderSVGRoot::RenderSVGRoot(SVGStyledElement* node) | 55 RenderSVGRoot::RenderSVGRoot(SVGStyledElement* node) |
| 56 : RenderReplaced(node) | 56 : RenderReplaced(node) |
| 57 , m_objectBoundingBoxValid(false) | 57 , m_objectBoundingBoxValid(false) |
| 58 , m_isLayoutSizeChanged(false) | 58 , m_isLayoutSizeChanged(false) |
| 59 , m_needsBoundariesOrTransformUpdate(true) | 59 , m_needsBoundariesOrTransformUpdate(true) |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 while (svgRoot && !svgRoot->isSVGRoot()) | 497 while (svgRoot && !svgRoot->isSVGRoot()) |
| 498 svgRoot = svgRoot->parent(); | 498 svgRoot = svgRoot->parent(); |
| 499 if (!svgRoot) | 499 if (!svgRoot) |
| 500 return; | 500 return; |
| 501 toRenderSVGRoot(svgRoot)->m_resourcesNeedingToInvalidateClients.add(resource
); | 501 toRenderSVGRoot(svgRoot)->m_resourcesNeedingToInvalidateClients.add(resource
); |
| 502 } | 502 } |
| 503 | 503 |
| 504 } | 504 } |
| 505 | 505 |
| 506 #endif // ENABLE(SVG) | 506 #endif // ENABLE(SVG) |
| OLD | NEW |