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

Side by Side Diff: Source/WebCore/svg/SVGPathElement.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/svg/SVGMissingGlyphElement.cpp ('k') | Source/WebCore/svg/SVGPatternElement.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) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 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 * 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests) 74 REGISTER_PARENT_ANIMATED_PROPERTIES(SVGTests)
75 END_REGISTER_ANIMATED_PROPERTIES 75 END_REGISTER_ANIMATED_PROPERTIES
76 76
77 inline SVGPathElement::SVGPathElement(const QualifiedName& tagName, Document* do cument) 77 inline SVGPathElement::SVGPathElement(const QualifiedName& tagName, Document* do cument)
78 : SVGStyledTransformableElement(tagName, document) 78 : SVGStyledTransformableElement(tagName, document)
79 , m_pathByteStream(SVGPathByteStream::create()) 79 , m_pathByteStream(SVGPathByteStream::create())
80 , m_pathSegList(PathSegUnalteredRole) 80 , m_pathSegList(PathSegUnalteredRole)
81 , m_isAnimValObserved(false) 81 , m_isAnimValObserved(false)
82 { 82 {
83 ASSERT(hasTagName(SVGNames::pathTag)); 83 ASSERT(hasTagName(SVGNames::pathTag));
84 ScriptWrappable::init(this);
84 registerAnimatedPropertiesForSVGPathElement(); 85 registerAnimatedPropertiesForSVGPathElement();
85 } 86 }
86 87
87 PassRefPtr<SVGPathElement> SVGPathElement::create(const QualifiedName& tagName, Document* document) 88 PassRefPtr<SVGPathElement> SVGPathElement::create(const QualifiedName& tagName, Document* document)
88 { 89 {
89 return adoptRef(new SVGPathElement(tagName, document)); 90 return adoptRef(new SVGPathElement(tagName, document));
90 } 91 }
91 92
92 float SVGPathElement::getTotalLength() 93 float SVGPathElement::getTotalLength()
93 { 94 {
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 407
407 RenderObject* SVGPathElement::createRenderer(RenderArena* arena, RenderStyle*) 408 RenderObject* SVGPathElement::createRenderer(RenderArena* arena, RenderStyle*)
408 { 409 {
409 // By default, any subclass is expected to do path-based drawing 410 // By default, any subclass is expected to do path-based drawing
410 return new (arena) RenderSVGPath(this); 411 return new (arena) RenderSVGPath(this);
411 } 412 }
412 413
413 } 414 }
414 415
415 #endif // ENABLE(SVG) 416 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/WebCore/svg/SVGMissingGlyphElement.cpp ('k') | Source/WebCore/svg/SVGPatternElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698