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

Side by Side Diff: Source/WebCore/svg/SVGHKernElement.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/SVGGradientElement.cpp ('k') | Source/WebCore/svg/SVGImageElement.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 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
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 16 matching lines...) Expand all
27 #include "SVGFontElement.h" 27 #include "SVGFontElement.h"
28 #include "SVGFontFaceElement.h" 28 #include "SVGFontFaceElement.h"
29 #include "SVGNames.h" 29 #include "SVGNames.h"
30 30
31 namespace WebCore { 31 namespace WebCore {
32 32
33 inline SVGHKernElement::SVGHKernElement(const QualifiedName& tagName, Document* document) 33 inline SVGHKernElement::SVGHKernElement(const QualifiedName& tagName, Document* document)
34 : SVGElement(tagName, document) 34 : SVGElement(tagName, document)
35 { 35 {
36 ASSERT(hasTagName(SVGNames::hkernTag)); 36 ASSERT(hasTagName(SVGNames::hkernTag));
37 ScriptWrappable::init(this);
37 } 38 }
38 39
39 PassRefPtr<SVGHKernElement> SVGHKernElement::create(const QualifiedName& tagName , Document* document) 40 PassRefPtr<SVGHKernElement> SVGHKernElement::create(const QualifiedName& tagName , Document* document)
40 { 41 {
41 return adoptRef(new SVGHKernElement(tagName, document)); 42 return adoptRef(new SVGHKernElement(tagName, document));
42 } 43 }
43 44
44 Node::InsertionNotificationRequest SVGHKernElement::insertedInto(ContainerNode* rootParent) 45 Node::InsertionNotificationRequest SVGHKernElement::insertedInto(ContainerNode* rootParent)
45 { 46 {
46 ContainerNode* fontNode = parentNode(); 47 ContainerNode* fontNode = parentNode();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair. unicodeName1) 79 && parseKerningUnicodeString(u1, kerningPair.unicodeRange1, kerningPair. unicodeName1)
79 && parseKerningUnicodeString(u2, kerningPair.unicodeRange2, kerningPair. unicodeName2)) { 80 && parseKerningUnicodeString(u2, kerningPair.unicodeRange2, kerningPair. unicodeName2)) {
80 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat (); 81 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat ();
81 kerningPairs.append(kerningPair); 82 kerningPairs.append(kerningPair);
82 } 83 }
83 } 84 }
84 85
85 } 86 }
86 87
87 #endif // ENABLE(SVG_FONTS) 88 #endif // ENABLE(SVG_FONTS)
OLDNEW
« no previous file with comments | « Source/WebCore/svg/SVGGradientElement.cpp ('k') | Source/WebCore/svg/SVGImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698