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 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. | 7 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 #ifndef SVGRenderingContext_h | 25 #ifndef SVGRenderingContext_h |
26 #define SVGRenderingContext_h | 26 #define SVGRenderingContext_h |
27 | 27 |
28 #include "core/rendering/svg/RenderSVGResourceClipper.h" | 28 #include "core/rendering/svg/RenderSVGResourceClipper.h" |
29 #include "platform/transforms/AffineTransform.h" | 29 #include "platform/transforms/AffineTransform.h" |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class RenderObject; | 33 class RenderObject; |
34 class FloatRect; | |
35 struct PaintInfo; | 34 struct PaintInfo; |
36 class RenderSVGResourceFilter; | 35 class RenderSVGResourceFilter; |
37 class RenderSVGResourceMasker; | 36 class RenderSVGResourceMasker; |
38 | 37 |
39 class SubtreeContentTransformScope { | 38 class SubtreeContentTransformScope { |
40 public: | 39 public: |
41 SubtreeContentTransformScope(const AffineTransform&); | 40 SubtreeContentTransformScope(const AffineTransform&); |
42 ~SubtreeContentTransformScope(); | 41 ~SubtreeContentTransformScope(); |
43 | 42 |
44 private: | 43 private: |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 IntRect m_savedPaintRect; | 104 IntRect m_savedPaintRect; |
106 RenderSVGResourceFilter* m_filter; | 105 RenderSVGResourceFilter* m_filter; |
107 RenderSVGResourceClipper* m_clipper; | 106 RenderSVGResourceClipper* m_clipper; |
108 RenderSVGResourceClipper::ClipperState m_clipperState; | 107 RenderSVGResourceClipper::ClipperState m_clipperState; |
109 RenderSVGResourceMasker* m_masker; | 108 RenderSVGResourceMasker* m_masker; |
110 }; | 109 }; |
111 | 110 |
112 } // namespace blink | 111 } // namespace blink |
113 | 112 |
114 #endif // SVGRenderingContext_h | 113 #endif // SVGRenderingContext_h |
OLD | NEW |