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

Side by Side Diff: Source/core/rendering/svg/RenderSVGPath.cpp

Issue 14487005: Absolutify paths to rendering/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months 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/RenderSVGPath.h ('k') | Source/core/rendering/svg/RenderSVGRect.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) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Google, Inc. 5 * Copyright (C) 2009 Google, Inc.
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
7 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> 9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org>
10 * Copyright (C) 2011 University of Szeged 10 * Copyright (C) 2011 University of Szeged
(...skipping 10 matching lines...) Expand all
21 * 21 *
22 * You should have received a copy of the GNU Library General Public License 22 * You should have received a copy of the GNU Library General Public License
23 * along with this library; see the file COPYING.LIB. If not, write to 23 * along with this library; see the file COPYING.LIB. If not, write to
24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 * Boston, MA 02110-1301, USA. 25 * Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 29
30 #if ENABLE(SVG) 30 #if ENABLE(SVG)
31 #include "RenderSVGPath.h" 31 #include "core/rendering/svg/RenderSVGPath.h"
32 32
33 #include "SVGPathElement.h" 33 #include "SVGPathElement.h"
34 #include "SVGStyledTransformableElement.h" 34 #include "SVGStyledTransformableElement.h"
35 #include "SVGSubpathData.h" 35 #include "core/rendering/svg/SVGSubpathData.h"
36 36
37 namespace WebCore { 37 namespace WebCore {
38 38
39 RenderSVGPath::RenderSVGPath(SVGStyledTransformableElement* node) 39 RenderSVGPath::RenderSVGPath(SVGStyledTransformableElement* node)
40 : RenderSVGShape(node) 40 : RenderSVGShape(node)
41 { 41 {
42 } 42 }
43 43
44 RenderSVGPath::~RenderSVGPath() 44 RenderSVGPath::~RenderSVGPath()
45 { 45 {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 return; 158 return;
159 159
160 SVGSubpathData subpathData(m_zeroLengthLinecapLocations); 160 SVGSubpathData subpathData(m_zeroLengthLinecapLocations);
161 path().apply(&subpathData, SVGSubpathData::updateFromPathElement); 161 path().apply(&subpathData, SVGSubpathData::updateFromPathElement);
162 subpathData.pathIsDone(); 162 subpathData.pathIsDone();
163 } 163 }
164 164
165 } 165 }
166 166
167 #endif // ENABLE(SVG) 167 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGPath.h ('k') | Source/core/rendering/svg/RenderSVGRect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698