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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 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
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 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 * Copyright (C) 2014 Google, Inc. 4 * Copyright (C) 2014 Google, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 13 matching lines...) Expand all
24 24
25 #include "core/CoreExport.h" 25 #include "core/CoreExport.h"
26 #include "core/svg/SVGAnimatedTransformList.h" 26 #include "core/svg/SVGAnimatedTransformList.h"
27 #include "core/svg/SVGElement.h" 27 #include "core/svg/SVGElement.h"
28 #include "core/svg/SVGTests.h" 28 #include "core/svg/SVGTests.h"
29 #include "platform/heap/Handle.h" 29 #include "platform/heap/Handle.h"
30 30
31 namespace blink { 31 namespace blink {
32 32
33 class AffineTransform; 33 class AffineTransform;
34 class Path;
35 class SVGMatrixTearOff; 34 class SVGMatrixTearOff;
36 class SVGRectTearOff; 35 class SVGRectTearOff;
37 36
38 class CORE_EXPORT SVGGraphicsElement : public SVGElement, public SVGTests { 37 class CORE_EXPORT SVGGraphicsElement : public SVGElement, public SVGTests {
39 DEFINE_WRAPPERTYPEINFO(); 38 DEFINE_WRAPPERTYPEINFO();
40 USING_GARBAGE_COLLECTED_MIXIN(SVGGraphicsElement); 39 USING_GARBAGE_COLLECTED_MIXIN(SVGGraphicsElement);
41 40
42 public: 41 public:
43 ~SVGGraphicsElement() override; 42 ~SVGGraphicsElement() override;
44 43
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 94
96 inline bool isSVGGraphicsElement(const SVGElement& element) { 95 inline bool isSVGGraphicsElement(const SVGElement& element) {
97 return element.isSVGGraphicsElement(); 96 return element.isSVGGraphicsElement();
98 } 97 }
99 98
100 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGGraphicsElement); 99 DEFINE_SVGELEMENT_TYPE_CASTS_WITH_FUNCTION(SVGGraphicsElement);
101 100
102 } // namespace blink 101 } // namespace blink
103 102
104 #endif // SVGGraphicsElement_h 103 #endif // SVGGraphicsElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGeometryElement.h ('k') | third_party/WebKit/Source/core/svg/SVGTests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698