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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.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/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index 9d517da2de4e3635fb168fbd4b9bbcec672edfae..8de3db694b6026ccd07792d78e9110a52094a0b8 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -60,7 +60,7 @@ class ExtraDataContainer : public ResourceResponse::ExtraData {
private:
explicit ExtraDataContainer(WebURLResponse::ExtraData* extraData)
- : m_extraData(wrapUnique(extraData)) {}
+ : m_extraData(WTF::wrapUnique(extraData)) {}
std::unique_ptr<WebURLResponse::ExtraData> m_extraData;
};

Powered by Google App Engine
This is Rietveld 408576698