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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGScriptElement.cpp

Issue 1835773002: Rename AtomicString::string() to AtomicString::getString(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 return hrefString(); 107 return hrefString();
108 } 108 }
109 109
110 String SVGScriptElement::charsetAttributeValue() const 110 String SVGScriptElement::charsetAttributeValue() const
111 { 111 {
112 return String(); 112 return String();
113 } 113 }
114 114
115 String SVGScriptElement::typeAttributeValue() const 115 String SVGScriptElement::typeAttributeValue() const
116 { 116 {
117 return getAttribute(SVGNames::typeAttr).string(); 117 return getAttribute(SVGNames::typeAttr).getString();
118 } 118 }
119 119
120 String SVGScriptElement::languageAttributeValue() const 120 String SVGScriptElement::languageAttributeValue() const
121 { 121 {
122 return String(); 122 return String();
123 } 123 }
124 124
125 String SVGScriptElement::forAttributeValue() const 125 String SVGScriptElement::forAttributeValue() const
126 { 126 {
127 return String(); 127 return String();
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 #endif 168 #endif
169 169
170 DEFINE_TRACE(SVGScriptElement) 170 DEFINE_TRACE(SVGScriptElement)
171 { 171 {
172 visitor->trace(m_loader); 172 visitor->trace(m_loader);
173 SVGElement::trace(visitor); 173 SVGElement::trace(visitor);
174 SVGURIReference::trace(visitor); 174 SVGURIReference::trace(visitor);
175 } 175 }
176 176
177 } // namespace blink 177 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGParsingError.cpp ('k') | third_party/WebKit/Source/core/svg/SVGTests.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698