Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1331)

Side by Side Diff: Source/core/rendering/svg/SVGRenderingContext.h

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/svg/SVGPathData.cpp ('k') | Source/core/rendering/svg/SVGSubpathData.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version. 12 * version 2 of the License, or (at your option) any later version.
13 * 13 *
14 * This library is distributed in the hope that it will be useful, 14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Library General Public License for more details. 17 * Library General Public License for more details.
18 * 18 *
19 * You should have received a copy of the GNU Library General Public License 19 * You should have received a copy of the GNU Library General Public License
20 * along with this library; see the file COPYING.LIB. If not, write to 20 * along with this library; see the file COPYING.LIB. If not, write to
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA. 22 * Boston, MA 02110-1301, USA.
23 */ 23 */
24 24
25 #ifndef SVGRenderingContext_h 25 #ifndef SVGRenderingContext_h
26 #define SVGRenderingContext_h 26 #define SVGRenderingContext_h
27 27
28 #include "core/platform/graphics/ImageBuffer.h"
29 #include "core/rendering/PaintInfo.h" 28 #include "core/rendering/PaintInfo.h"
30 #include "core/rendering/svg/RenderSVGResourceClipper.h" 29 #include "core/rendering/svg/RenderSVGResourceClipper.h"
30 #include "platform/graphics/ImageBuffer.h"
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 class AffineTransform; 34 class AffineTransform;
35 class RenderObject; 35 class RenderObject;
36 class FloatRect; 36 class FloatRect;
37 class RenderSVGResourceFilter; 37 class RenderSVGResourceFilter;
38 class RenderSVGResourceMasker; 38 class RenderSVGResourceMasker;
39 39
40 // SVGRenderingContext 40 // SVGRenderingContext
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 IntRect m_savedPaintRect; 112 IntRect m_savedPaintRect;
113 RenderSVGResourceFilter* m_filter; 113 RenderSVGResourceFilter* m_filter;
114 RenderSVGResourceClipper* m_clipper; 114 RenderSVGResourceClipper* m_clipper;
115 ClipperContext m_clipperContext; 115 ClipperContext m_clipperContext;
116 RenderSVGResourceMasker* m_masker; 116 RenderSVGResourceMasker* m_masker;
117 }; 117 };
118 118
119 } // namespace WebCore 119 } // namespace WebCore
120 120
121 #endif // SVGRenderingContext_h 121 #endif // SVGRenderingContext_h
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/SVGPathData.cpp ('k') | Source/core/rendering/svg/SVGSubpathData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698