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

Side by Side Diff: Source/core/svg/SVGPathElement.cpp

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/core/svg/SVGPaint.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('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, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #include "config.h" 21 #include "config.h"
22 22
23 #include "core/svg/SVGPathElement.h" 23 #include "core/svg/SVGPathElement.h"
24 24
25 #include "SVGNames.h"
26 #include "core/rendering/svg/RenderSVGPath.h" 25 #include "core/rendering/svg/RenderSVGPath.h"
27 #include "core/rendering/svg/RenderSVGResource.h" 26 #include "core/rendering/svg/RenderSVGResource.h"
28 #include "core/svg/SVGElementInstance.h" 27 #include "core/svg/SVGElementInstance.h"
29 #include "core/svg/SVGMPathElement.h" 28 #include "core/svg/SVGMPathElement.h"
30 #include "core/svg/SVGPathSegArcAbs.h" 29 #include "core/svg/SVGPathSegArcAbs.h"
31 #include "core/svg/SVGPathSegArcRel.h" 30 #include "core/svg/SVGPathSegArcRel.h"
32 #include "core/svg/SVGPathSegClosePath.h" 31 #include "core/svg/SVGPathSegClosePath.h"
33 #include "core/svg/SVGPathSegCurvetoCubicAbs.h" 32 #include "core/svg/SVGPathSegCurvetoCubicAbs.h"
34 #include "core/svg/SVGPathSegCurvetoCubicRel.h" 33 #include "core/svg/SVGPathSegCurvetoCubicRel.h"
35 #include "core/svg/SVGPathSegCurvetoCubicSmoothAbs.h" 34 #include "core/svg/SVGPathSegCurvetoCubicSmoothAbs.h"
36 #include "core/svg/SVGPathSegCurvetoCubicSmoothRel.h" 35 #include "core/svg/SVGPathSegCurvetoCubicSmoothRel.h"
37 #include "core/svg/SVGPathSegCurvetoQuadraticAbs.h" 36 #include "core/svg/SVGPathSegCurvetoQuadraticAbs.h"
38 #include "core/svg/SVGPathSegCurvetoQuadraticRel.h" 37 #include "core/svg/SVGPathSegCurvetoQuadraticRel.h"
39 #include "core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h" 38 #include "core/svg/SVGPathSegCurvetoQuadraticSmoothAbs.h"
40 #include "core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h" 39 #include "core/svg/SVGPathSegCurvetoQuadraticSmoothRel.h"
41 #include "core/svg/SVGPathSegLinetoAbs.h" 40 #include "core/svg/SVGPathSegLinetoAbs.h"
42 #include "core/svg/SVGPathSegLinetoHorizontalAbs.h" 41 #include "core/svg/SVGPathSegLinetoHorizontalAbs.h"
43 #include "core/svg/SVGPathSegLinetoHorizontalRel.h" 42 #include "core/svg/SVGPathSegLinetoHorizontalRel.h"
44 #include "core/svg/SVGPathSegLinetoRel.h" 43 #include "core/svg/SVGPathSegLinetoRel.h"
45 #include "core/svg/SVGPathSegLinetoVerticalAbs.h" 44 #include "core/svg/SVGPathSegLinetoVerticalAbs.h"
46 #include "core/svg/SVGPathSegLinetoVerticalRel.h" 45 #include "core/svg/SVGPathSegLinetoVerticalRel.h"
47 #include "core/svg/SVGPathSegList.h"
48 #include "core/svg/SVGPathSegMovetoAbs.h" 46 #include "core/svg/SVGPathSegMovetoAbs.h"
49 #include "core/svg/SVGPathSegMovetoRel.h" 47 #include "core/svg/SVGPathSegMovetoRel.h"
50 #include "core/svg/SVGPathUtilities.h" 48 #include "core/svg/SVGPathUtilities.h"
51 #include "core/svg/properties/SVGPathSegListPropertyTearOff.h" 49 #include "core/svg/properties/SVGPathSegListPropertyTearOff.h"
52 50
53 namespace WebCore { 51 namespace WebCore {
54 52
55 // Define custom animated property 'd'. 53 // Define custom animated property 'd'.
56 const SVGPropertyInfo* SVGPathElement::dPropertyInfo() 54 const SVGPropertyInfo* SVGPathElement::dPropertyInfo()
57 { 55 {
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 return renderer->path().boundingRect(); 397 return renderer->path().boundingRect();
400 } 398 }
401 399
402 RenderObject* SVGPathElement::createRenderer(RenderStyle*) 400 RenderObject* SVGPathElement::createRenderer(RenderStyle*)
403 { 401 {
404 // By default, any subclass is expected to do path-based drawing 402 // By default, any subclass is expected to do path-based drawing
405 return new RenderSVGPath(this); 403 return new RenderSVGPath(this);
406 } 404 }
407 405
408 } 406 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGPaint.cpp ('k') | Source/core/svg/SVGPathSegListBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698