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

Unified Diff: third_party/WebKit/Source/core/html/HTMLScriptElement.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, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLScriptElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLScriptElement.cpp b/third_party/WebKit/Source/core/html/HTMLScriptElement.cpp
index c04f3d4e5ba3d0689f589178e10982617abca9b9..97edeeac86a081fe7c4dc143f141c313738c79d5 100644
--- a/third_party/WebKit/Source/core/html/HTMLScriptElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.cpp
@@ -125,32 +125,32 @@ KURL HTMLScriptElement::src() const
String HTMLScriptElement::sourceAttributeValue() const
{
- return getAttribute(srcAttr).string();
+ return getAttribute(srcAttr).getString();
}
String HTMLScriptElement::charsetAttributeValue() const
{
- return getAttribute(charsetAttr).string();
+ return getAttribute(charsetAttr).getString();
}
String HTMLScriptElement::typeAttributeValue() const
{
- return getAttribute(typeAttr).string();
+ return getAttribute(typeAttr).getString();
}
String HTMLScriptElement::languageAttributeValue() const
{
- return getAttribute(languageAttr).string();
+ return getAttribute(languageAttr).getString();
}
String HTMLScriptElement::forAttributeValue() const
{
- return getAttribute(forAttr).string();
+ return getAttribute(forAttr).getString();
}
String HTMLScriptElement::eventAttributeValue() const
{
- return getAttribute(eventAttr).string();
+ return getAttribute(eventAttr).getString();
}
bool HTMLScriptElement::asyncAttributeValue() const
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLObjectElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698