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

Unified Diff: mojo/edk/test/multiprocess_test_helper.cc

Issue 1659213002: Move PlatformChannelPair to //mojo/edk/platform and rename it PlatformPipe. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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
« no previous file with comments | « mojo/edk/test/multiprocess_test_helper.h ('k') | shell/child_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/test/multiprocess_test_helper.cc
diff --git a/mojo/edk/test/multiprocess_test_helper.cc b/mojo/edk/test/multiprocess_test_helper.cc
index 4819a46e12b973629b8065a2972f124f60ca7c43..35fc25417a67d836c28f45fca0688b40a8e42e0b 100644
--- a/mojo/edk/test/multiprocess_test_helper.cc
+++ b/mojo/edk/test/multiprocess_test_helper.cc
@@ -8,18 +8,19 @@
#include "base/logging.h"
#include "base/posix/global_descriptors.h"
#include "base/test/test_timeouts.h"
-#include "mojo/edk/embedder/platform_channel_pair.h"
#include "mojo/edk/platform/platform_handle.h"
+#include "mojo/edk/platform/platform_pipe.h"
#include "mojo/edk/platform/scoped_platform_handle.h"
using mojo::platform::PlatformHandle;
+using mojo::platform::PlatformPipe;
using mojo::platform::ScopedPlatformHandle;
namespace mojo {
namespace test {
MultiprocessTestHelper::MultiprocessTestHelper()
- : platform_channel_pair_(new embedder::PlatformChannelPair()) {
+ : platform_channel_pair_(new PlatformPipe()) {
server_platform_handle = platform_channel_pair_->handle0.Pass();
}
« no previous file with comments | « mojo/edk/test/multiprocess_test_helper.h ('k') | shell/child_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698