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

Unified Diff: third_party/WebKit/Source/core/html/ClassList.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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/ClassList.cpp
diff --git a/third_party/WebKit/Source/core/html/ClassList.cpp b/third_party/WebKit/Source/core/html/ClassList.cpp
index 9f7795f0fae319ac5cc84e9321aeb966618b80a6..08f3bd4060616d9cb75e5e88a32a49b3ca0b21c6 100644
--- a/third_party/WebKit/Source/core/html/ClassList.cpp
+++ b/third_party/WebKit/Source/core/html/ClassList.cpp
@@ -53,7 +53,7 @@ const SpaceSplitString& ClassList::classNames() const {
DCHECK(m_element->hasClass());
if (m_element->document().inQuirksMode()) {
if (!m_classNamesForQuirksMode)
- m_classNamesForQuirksMode = wrapUnique(
+ m_classNamesForQuirksMode = WTF::wrapUnique(
new SpaceSplitString(value(), SpaceSplitString::ShouldNotFoldCase));
return *m_classNamesForQuirksMode.get();
}

Powered by Google App Engine
This is Rietveld 408576698