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

Unified Diff: Source/core/svg/SVGFontFaceSrcElement.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGFontFaceNameElement.cpp ('k') | Source/core/svg/SVGFontFaceSrcElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFontFaceSrcElement.h
diff --git a/Source/core/svg/SVGFontFaceSrcElement.h b/Source/core/svg/SVGFontFaceSrcElement.h
index eb11d7b1d005a920351a7aac84bc81ee20dc20bb..f7ef1af6f6b2bc4a0a203ac54294082f9334b8a7 100644
--- a/Source/core/svg/SVGFontFaceSrcElement.h
+++ b/Source/core/svg/SVGFontFaceSrcElement.h
@@ -29,12 +29,12 @@ class CSSValueList;
class SVGFontFaceSrcElement FINAL : public SVGElement {
public:
- static PassRefPtr<SVGFontFaceSrcElement> create(const QualifiedName&, Document&);
+ static PassRefPtr<SVGFontFaceSrcElement> create(Document&);
PassRefPtr<CSSValueList> srcValue() const;
private:
- SVGFontFaceSrcElement(const QualifiedName&, Document&);
+ explicit SVGFontFaceSrcElement(Document&);
virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
« no previous file with comments | « Source/core/svg/SVGFontFaceNameElement.cpp ('k') | Source/core/svg/SVGFontFaceSrcElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698