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

Side by Side Diff: Source/core/svg/SVGTextElement.h

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. Created 7 years, 7 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/svg/SVGTSpanElement.h ('k') | Source/core/svg/SVGTextPathElement.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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2008 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,
(...skipping 10 matching lines...) Expand all
21 #ifndef SVGTextElement_h 21 #ifndef SVGTextElement_h
22 #define SVGTextElement_h 22 #define SVGTextElement_h
23 23
24 #if ENABLE(SVG) 24 #if ENABLE(SVG)
25 #include "SVGAnimatedTransformList.h" 25 #include "SVGAnimatedTransformList.h"
26 #include "SVGTextPositioningElement.h" 26 #include "SVGTextPositioningElement.h"
27 #include "SVGTransformable.h" 27 #include "SVGTransformable.h"
28 28
29 namespace WebCore { 29 namespace WebCore {
30 30
31 class SVGTextElement : public SVGTextPositioningElement, 31 class SVGTextElement FINAL : public SVGTextPositioningElement,
32 public SVGTransformable { 32 public SVGTransformable {
33 public: 33 public:
34 static PassRefPtr<SVGTextElement> create(const QualifiedName&, Document*); 34 static PassRefPtr<SVGTextElement> create(const QualifiedName&, Document*);
35 35
36 virtual SVGElement* nearestViewportElement() const; 36 virtual SVGElement* nearestViewportElement() const;
37 virtual SVGElement* farthestViewportElement() const; 37 virtual SVGElement* farthestViewportElement() const;
38 38
39 virtual FloatRect getBBox(StyleUpdateStrategy = AllowStyleUpdate); 39 virtual FloatRect getBBox(StyleUpdateStrategy = AllowStyleUpdate);
40 virtual AffineTransform getCTM(StyleUpdateStrategy = AllowStyleUpdate); 40 virtual AffineTransform getCTM(StyleUpdateStrategy = AllowStyleUpdate);
41 virtual AffineTransform getScreenCTM(StyleUpdateStrategy = AllowStyleUpdate) ; 41 virtual AffineTransform getScreenCTM(StyleUpdateStrategy = AllowStyleUpdate) ;
42 virtual AffineTransform animatedLocalTransform() const; 42 virtual AffineTransform animatedLocalTransform() const;
(...skipping 19 matching lines...) Expand all
62 END_DECLARE_ANIMATED_PROPERTIES 62 END_DECLARE_ANIMATED_PROPERTIES
63 63
64 // Used by <animateMotion> 64 // Used by <animateMotion>
65 OwnPtr<AffineTransform> m_supplementalTransform; 65 OwnPtr<AffineTransform> m_supplementalTransform;
66 }; 66 };
67 67
68 } // namespace WebCore 68 } // namespace WebCore
69 69
70 #endif // ENABLE(SVG) 70 #endif // ENABLE(SVG)
71 #endif 71 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGTSpanElement.h ('k') | Source/core/svg/SVGTextPathElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698