| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "SVGMarkerElement.h" | 26 #include "SVGMarkerElement.h" |
| 27 #include "SVGStyledElement.h" | 27 #include "SVGStyledElement.h" |
| 28 | 28 |
| 29 #include <wtf/HashSet.h> | 29 #include <wtf/HashSet.h> |
| 30 | 30 |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 class AffineTransform; | 33 class AffineTransform; |
| 34 class RenderObject; | 34 class RenderObject; |
| 35 | 35 |
| 36 class RenderSVGResourceMarker : public RenderSVGResourceContainer { | 36 class RenderSVGResourceMarker FINAL : public RenderSVGResourceContainer { |
| 37 public: | 37 public: |
| 38 RenderSVGResourceMarker(SVGMarkerElement*); | 38 RenderSVGResourceMarker(SVGMarkerElement*); |
| 39 virtual ~RenderSVGResourceMarker(); | 39 virtual ~RenderSVGResourceMarker(); |
| 40 | 40 |
| 41 virtual const char* renderName() const { return "RenderSVGResourceMarker"; } | 41 virtual const char* renderName() const { return "RenderSVGResourceMarker"; } |
| 42 | 42 |
| 43 virtual void removeAllClientsFromCache(bool markForInvalidation = true); | 43 virtual void removeAllClientsFromCache(bool markForInvalidation = true); |
| 44 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true); | 44 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true); |
| 45 | 45 |
| 46 void draw(PaintInfo&, const AffineTransform&); | 46 void draw(PaintInfo&, const AffineTransform&); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 73 AffineTransform viewportTransform() const; | 73 AffineTransform viewportTransform() const; |
| 74 | 74 |
| 75 mutable AffineTransform m_localToParentTransform; | 75 mutable AffineTransform m_localToParentTransform; |
| 76 FloatRect m_viewport; | 76 FloatRect m_viewport; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } | 79 } |
| 80 #endif | 80 #endif |
| 81 | 81 |
| 82 #endif | 82 #endif |
| OLD | NEW |