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

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

Issue 23956012: Stop passing NodeRenderingContext except in textRendererIsNeeded (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
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&);
126 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 126 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
127 virtual void svgAttributeChanged(const QualifiedName&); 127 virtual void svgAttributeChanged(const QualifiedName&);
128 128
129 virtual RenderObject* createRenderer(RenderStyle*); 129 virtual RenderObject* createRenderer(RenderStyle*);
130 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; 130 virtual bool childShouldCreateRenderer(const Node& child) const;
131 virtual bool rendererIsNeeded(const NodeRenderingContext&); 131 virtual bool rendererIsNeeded(const RenderStyle&);
132 132
133 virtual bool selfHasRelativeLengths() const; 133 virtual bool selfHasRelativeLengths() const;
134 134
135 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTextPathElement) 135 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGTextPathElement)
136 DECLARE_ANIMATED_LENGTH(StartOffset, startOffset) 136 DECLARE_ANIMATED_LENGTH(StartOffset, startOffset)
137 DECLARE_ANIMATED_ENUMERATION(Method, method, SVGTextPathMethodType) 137 DECLARE_ANIMATED_ENUMERATION(Method, method, SVGTextPathMethodType)
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 inline SVGTextPathElement* toSVGTextPathElement(Node* node) 143 inline SVGTextPathElement* toSVGTextPathElement(Node* node)
144 { 144 {
145 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::textPat hTag)); 145 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::textPat hTag));
146 return static_cast<SVGTextPathElement*>(node); 146 return static_cast<SVGTextPathElement*>(node);
147 } 147 }
148 148
149 } // namespace WebCore 149 } // namespace WebCore
150 150
151 #endif 151 #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