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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchHeaderList.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/modules/fetch/FetchHeaderList.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp b/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
index f8061121b6c12cf09ce33e6d723e1b0a1d59749d..abbd34f37ca60b78591f37db5f8b40c32a4f4b05 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchHeaderList.cpp
@@ -30,7 +30,7 @@ void FetchHeaderList::append(const String& name, const String& value) {
// "To append a name/value (|name|/|value|) pair to a header list (|list|),
// append a new header whose name is |name|, byte lowercased, and value is
// |value|, to |list|."
- m_headerList.append(wrapUnique(new Header(name.lower(), value)));
+ m_headerList.append(WTF::wrapUnique(new Header(name.lower(), value)));
}
void FetchHeaderList::set(const String& name, const String& value) {
@@ -54,7 +54,7 @@ void FetchHeaderList::set(const String& name, const String& value) {
return;
}
}
- m_headerList.append(makeUnique<Header>(lowercasedName, value));
+ m_headerList.append(WTF::makeUnique<Header>(lowercasedName, value));
}
String FetchHeaderList::extractMIMEType() const {

Powered by Google App Engine
This is Rietveld 408576698