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

Unified Diff: mojo/common/test/multiprocess_test_base_unittest.cc

Issue 137063010: Mojo: Move platform handle/channel stuff in system to embedder namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/common/test/multiprocess_test_base.cc ('k') | mojo/system/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/common/test/multiprocess_test_base_unittest.cc
diff --git a/mojo/common/test/multiprocess_test_base_unittest.cc b/mojo/common/test/multiprocess_test_base_unittest.cc
index 114d22c2df93d8fc9161260792b0c6d1720eaa47..45f2b6b069a7d723ca788ed9b3da843ea5dbaba7 100644
--- a/mojo/common/test/multiprocess_test_base_unittest.cc
+++ b/mojo/common/test/multiprocess_test_base_unittest.cc
@@ -51,7 +51,7 @@ TEST_F(MultiprocessTestBaseTest, PassedChannelPosix) {
StartChild("PassedChannelPosix");
// Take ownership of the FD.
- system::ScopedPlatformHandle handle = server_platform_handle.Pass();
+ embedder::ScopedPlatformHandle handle = server_platform_handle.Pass();
int fd = handle.get().fd;
// The FD should be non-blocking. Check this.
@@ -78,7 +78,7 @@ MOJO_MULTIPROCESS_TEST_CHILD_MAIN(PassedChannelPosix) {
CHECK(MultiprocessTestBaseTest::client_platform_handle.is_valid());
// Take ownership of the FD.
- system::ScopedPlatformHandle handle =
+ embedder::ScopedPlatformHandle handle =
MultiprocessTestBaseTest::client_platform_handle.Pass();
int fd = handle.get().fd;
« no previous file with comments | « mojo/common/test/multiprocess_test_base.cc ('k') | mojo/system/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698