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

Side by Side Diff: Source/core/svg/SVGFontFaceSrcElement.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 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/SVGFontFaceNameElement.cpp ('k') | Source/core/svg/SVGFontFaceUriElement.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 * 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 19 matching lines...) Expand all
30 #include "core/svg/SVGFontFaceNameElement.h" 30 #include "core/svg/SVGFontFaceNameElement.h"
31 #include "core/svg/SVGFontFaceUriElement.h" 31 #include "core/svg/SVGFontFaceUriElement.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 using namespace SVGNames; 35 using namespace SVGNames;
36 36
37 inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document) 37 inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document)
38 : SVGElement(font_face_srcTag, document) 38 : SVGElement(font_face_srcTag, document)
39 { 39 {
40 ScriptWrappable::init(this);
41 } 40 }
42 41
43 DEFINE_NODE_FACTORY(SVGFontFaceSrcElement) 42 DEFINE_NODE_FACTORY(SVGFontFaceSrcElement)
44 43
45 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const 44 PassRefPtrWillBeRawPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const
46 { 45 {
47 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated() ; 46 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated() ;
48 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element ; element = Traversal<SVGElement>::nextSibling(*element)) { 47 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element ; element = Traversal<SVGElement>::nextSibling(*element)) {
49 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr; 48 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr;
50 if (isSVGFontFaceUriElement(*element)) 49 if (isSVGFontFaceUriElement(*element))
(...skipping 10 matching lines...) Expand all
61 void SVGFontFaceSrcElement::childrenChanged(const ChildrenChange& change) 60 void SVGFontFaceSrcElement::childrenChanged(const ChildrenChange& change)
62 { 61 {
63 SVGElement::childrenChanged(change); 62 SVGElement::childrenChanged(change);
64 if (isSVGFontFaceElement(parentNode())) 63 if (isSVGFontFaceElement(parentNode()))
65 toSVGFontFaceElement(*parentNode()).rebuildFontFace(); 64 toSVGFontFaceElement(*parentNode()).rebuildFontFace();
66 } 65 }
67 66
68 } 67 }
69 68
70 #endif // ENABLE(SVG_FONTS) 69 #endif // ENABLE(SVG_FONTS)
OLDNEW
« no previous file with comments | « Source/core/svg/SVGFontFaceNameElement.cpp ('k') | Source/core/svg/SVGFontFaceUriElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698