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

Unified Diff: third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc

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/testing/weburl_loader_mock.cc
diff --git a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
index 094d2c0ebe2467679a0fcec9ca449cafea519916..500d0409f10966db953eed10c51127db3fd63ebc 100644
--- a/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
+++ b/third_party/WebKit/Source/platform/testing/weburl_loader_mock.cc
@@ -15,9 +15,8 @@ namespace blink {
WebURLLoaderMock::WebURLLoaderMock(WebURLLoaderMockFactoryImpl* factory,
WebURLLoader* default_loader)
: factory_(factory),
- default_loader_(wrapUnique(default_loader)),
- weak_factory_(this) {
-}
+ default_loader_(WTF::wrapUnique(default_loader)),
+ weak_factory_(this) {}
WebURLLoaderMock::~WebURLLoaderMock() {
cancel();
@@ -36,7 +35,7 @@ void WebURLLoaderMock::ServeAsynchronousRequest(
// will just proxy to the client.
std::unique_ptr<WebURLLoaderTestDelegate> default_delegate;
if (!delegate) {
- default_delegate = wrapUnique(new WebURLLoaderTestDelegate());
+ default_delegate = WTF::wrapUnique(new WebURLLoaderTestDelegate());
delegate = default_delegate.get();
}

Powered by Google App Engine
This is Rietveld 408576698