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

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

Issue 68643007: Remove QualifiedName argument from SVGElement::create functions (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGTextElement.cpp ('k') | Source/core/svg/SVGTextPathElement.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) 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 // Forward declare enumerations in the W3C naming scheme, for IDL generation . 102 // Forward declare enumerations in the W3C naming scheme, for IDL generation .
103 enum { 103 enum {
104 TEXTPATH_METHODTYPE_UNKNOWN = SVGTextPathMethodUnknown, 104 TEXTPATH_METHODTYPE_UNKNOWN = SVGTextPathMethodUnknown,
105 TEXTPATH_METHODTYPE_ALIGN = SVGTextPathMethodAlign, 105 TEXTPATH_METHODTYPE_ALIGN = SVGTextPathMethodAlign,
106 TEXTPATH_METHODTYPE_STRETCH = SVGTextPathMethodStretch, 106 TEXTPATH_METHODTYPE_STRETCH = SVGTextPathMethodStretch,
107 TEXTPATH_SPACINGTYPE_UNKNOWN = SVGTextPathSpacingUnknown, 107 TEXTPATH_SPACINGTYPE_UNKNOWN = SVGTextPathSpacingUnknown,
108 TEXTPATH_SPACINGTYPE_AUTO = SVGTextPathSpacingAuto, 108 TEXTPATH_SPACINGTYPE_AUTO = SVGTextPathSpacingAuto,
109 TEXTPATH_SPACINGTYPE_EXACT = SVGTextPathSpacingExact 109 TEXTPATH_SPACINGTYPE_EXACT = SVGTextPathSpacingExact
110 }; 110 };
111 111
112 static PassRefPtr<SVGTextPathElement> create(const QualifiedName&, Document& ); 112 static PassRefPtr<SVGTextPathElement> create(Document&);
113 113
114 private: 114 private:
115 SVGTextPathElement(const QualifiedName&, Document&); 115 explicit SVGTextPathElement(Document&);
116 116
117 virtual ~SVGTextPathElement(); 117 virtual ~SVGTextPathElement();
118 118
119 void clearResourceReferences(); 119 void clearResourceReferences();
120 120
121 virtual void buildPendingResource(); 121 virtual void buildPendingResource();
122 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 122 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
123 virtual void removedFrom(ContainerNode*) OVERRIDE; 123 virtual void removedFrom(ContainerNode*) OVERRIDE;
124 124
125 bool isSupportedAttribute(const QualifiedName&); 125 bool isSupportedAttribute(const QualifiedName&);
(...skipping 12 matching lines...) Expand all
138 DECLARE_ANIMATED_ENUMERATION(Spacing, spacing, SVGTextPathSpacingType) 138 DECLARE_ANIMATED_ENUMERATION(Spacing, spacing, SVGTextPathSpacingType)
139 DECLARE_ANIMATED_STRING(Href, href) 139 DECLARE_ANIMATED_STRING(Href, href)
140 END_DECLARE_ANIMATED_PROPERTIES 140 END_DECLARE_ANIMATED_PROPERTIES
141 }; 141 };
142 142
143 DEFINE_NODE_TYPE_CASTS(SVGTextPathElement, hasTagName(SVGNames::textPathTag)); 143 DEFINE_NODE_TYPE_CASTS(SVGTextPathElement, hasTagName(SVGNames::textPathTag));
144 144
145 } // namespace WebCore 145 } // namespace WebCore
146 146
147 #endif 147 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGTextElement.cpp ('k') | Source/core/svg/SVGTextPathElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698