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

Unified Diff: third_party/WebKit/Source/platform/testing/RunAllTests.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/testing/RunAllTests.cpp
diff --git a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
index 6f6e4eec5292a46d3de3636ddbc2149613d4790b..837dd9fc9380f0e8f1e1268f5ef32be95cacbcd8 100644
--- a/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
+++ b/third_party/WebKit/Source/platform/testing/RunAllTests.cpp
@@ -56,8 +56,9 @@ int main(int argc, char** argv) {
mojo::edk::Init();
base::TestIOThread testIoThread(base::TestIOThread::kAutoStart);
- std::unique_ptr<mojo::edk::test::ScopedIPCSupport> ipcSupport(wrapUnique(
- new mojo::edk::test::ScopedIPCSupport(testIoThread.task_runner())));
+ std::unique_ptr<mojo::edk::test::ScopedIPCSupport> ipcSupport(
+ WTF::wrapUnique(
+ new mojo::edk::test::ScopedIPCSupport(testIoThread.task_runner())));
result = base::LaunchUnitTests(
argc, argv, base::Bind(runTestSuite, base::Unretained(&testSuite)));
}

Powered by Google App Engine
This is Rietveld 408576698