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

Unified Diff: mojo/edk/system/raw_channel_unittest.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/system/master_connection_manager.cc ('k') | mojo/edk/system/remote_data_pipe_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/raw_channel_unittest.cc
diff --git a/mojo/edk/system/raw_channel_unittest.cc b/mojo/edk/system/raw_channel_unittest.cc
index c5a35b26a869d40552e81200f00145c164ea45cc..9c0ec6cff2e051fa53a4e0a4dc5e44f62601e792 100644
--- a/mojo/edk/system/raw_channel_unittest.cc
+++ b/mojo/edk/system/raw_channel_unittest.cc
@@ -12,8 +12,8 @@
#include <vector>
#include "base/logging.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"
#include "mojo/edk/platform/thread_utils.h"
#include "mojo/edk/system/message_in_transit.h"
@@ -32,6 +32,7 @@
#include "testing/gtest/include/gtest/gtest.h"
using mojo::platform::PlatformHandle;
+using mojo::platform::PlatformPipe;
using mojo::platform::ScopedPlatformHandle;
using mojo::platform::ThreadSleep;
using mojo::util::AutoResetWaitableEvent;
@@ -80,7 +81,7 @@ class RawChannelTest : public testing::Test {
~RawChannelTest() override {}
void SetUp() override {
- embedder::PlatformChannelPair channel_pair;
+ PlatformPipe channel_pair;
handles[0] = channel_pair.handle0.Pass();
handles[1] = channel_pair.handle1.Pass();
io_thread_.Start();
« no previous file with comments | « mojo/edk/system/master_connection_manager.cc ('k') | mojo/edk/system/remote_data_pipe_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698