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

Unified Diff: mojo/edk/system/master_connection_manager.cc

Issue 1665573002: Rename some variables platform_channel_pair -> platform_pipe. (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/connection_manager_unittest.cc ('k') | mojo/edk/test/multiprocess_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/master_connection_manager.cc
diff --git a/mojo/edk/system/master_connection_manager.cc b/mojo/edk/system/master_connection_manager.cc
index ee175b76917a04b29a9581a734be2936e244cb0c..5cb0967748d3fe14202e7f7eb26cbdcb8491493c 100644
--- a/mojo/edk/system/master_connection_manager.cc
+++ b/mojo/edk/system/master_connection_manager.cc
@@ -632,12 +632,12 @@ ConnectionManager::Result MasterConnectionManager::ConnectImplHelperNoLock(
peer_process_identifier,
ProcessConnections::ConnectionStatus::RUNNING,
ScopedPlatformHandle());
- PlatformPipe platform_channel_pair;
- *platform_handle = platform_channel_pair.handle0.Pass();
+ PlatformPipe platform_pipe;
+ *platform_handle = platform_pipe.handle0.Pass();
connections_[peer_process_identifier]->AddConnection(
process_identifier, ProcessConnections::ConnectionStatus::PENDING,
- platform_channel_pair.handle1.Pass());
+ platform_pipe.handle1.Pass());
break;
}
case ProcessConnections::ConnectionStatus::PENDING:
« no previous file with comments | « mojo/edk/system/connection_manager_unittest.cc ('k') | mojo/edk/test/multiprocess_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698