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

Unified Diff: content/public/test/render_view_test.cc

Issue 1554443003: Stop linking in the old Mojo EDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes Created 4 years, 11 months 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: content/public/test/render_view_test.cc
diff --git a/content/public/test/render_view_test.cc b/content/public/test/render_view_test.cc
index 3eabdb918fcfff147599348ad0148cf231b3833c..8ff6bacccb4c653b101c7a228b7068aa36a7d1e5 100644
--- a/content/public/test/render_view_test.cc
+++ b/content/public/test/render_view_test.cc
@@ -293,12 +293,10 @@ void RenderViewTest::SetUp() {
#if !defined(OS_IOS)
InitializeMojo();
- if (base::CommandLine::ForCurrentProcess()->HasSwitch("use-new-edk")) {
- test_io_thread_.reset(new base::TestIOThread(
- base::TestIOThread::kAutoStart));
- ipc_support_.reset(new mojo::test::ScopedIPCSupport(
- test_io_thread_->task_runner()));
- }
+ test_io_thread_.reset(new base::TestIOThread(
+ base::TestIOThread::kAutoStart));
+ ipc_support_.reset(new mojo::edk::test::ScopedIPCSupport(
+ test_io_thread_->task_runner()));
#endif
// This needs to pass the mock render thread to the view.

Powered by Google App Engine
This is Rietveld 408576698