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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGPathSegClosePath.h

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month 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
OLDNEW
(Empty)
1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
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
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21 #ifndef SVGPathSegClosePath_h
22 #define SVGPathSegClosePath_h
23
24 #include "core/svg/SVGPathSeg.h"
25
26 namespace blink {
27
28 class SVGPathSegClosePath final : public SVGPathSeg {
29 DEFINE_WRAPPERTYPEINFO();
30 public:
31 static PassRefPtrWillBeRawPtr<SVGPathSegClosePath> create(SVGPathElement* el ement)
32 {
33 return adoptRefWillBeNoop(new SVGPathSegClosePath(element));
34 }
35
36 PassRefPtrWillBeRawPtr<SVGPathSeg> clone() override
37 {
38 return adoptRefWillBeNoop(new SVGPathSegClosePath(nullptr));
39 }
40
41 private:
42 SVGPathSegClosePath(SVGPathElement* element)
43 : SVGPathSeg(element) { }
44
45 unsigned short pathSegType() const override { return PATHSEG_CLOSEPATH; }
46 String pathSegTypeAsLetter() const override { return "Z"; }
47 };
48
49 } // namespace blink
50
51 #endif // SVGPathSegClosePath_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPathSegArcRel.idl ('k') | third_party/WebKit/Source/core/svg/SVGPathSegClosePath.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698