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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchDataLoader.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/FetchDataLoader.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
index cb76438f1b76c3acc2f85c3bd824085cf010fa9e..e5b6ce557785ad9816bf866ffd45be9bc671477d 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchDataLoader.cpp
@@ -108,7 +108,7 @@ class FetchDataLoaderAsArrayBuffer final : public FetchDataLoader,
DCHECK(!m_rawData);
DCHECK(!m_consumer);
m_client = client;
- m_rawData = makeUnique<ArrayBufferBuilder>();
+ m_rawData = WTF::makeUnique<ArrayBufferBuilder>();
m_consumer = consumer;
m_consumer->setClient(this);
onStateChange();

Powered by Google App Engine
This is Rietveld 408576698