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

Unified Diff: components/nacl/broker/nacl_broker_listener.cc

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Created 3 years, 6 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: components/nacl/broker/nacl_broker_listener.cc
diff --git a/components/nacl/broker/nacl_broker_listener.cc b/components/nacl/broker/nacl_broker_listener.cc
index 24ac3c8df8a9833325201e00c4a62662254410c3..a8ef3fd605f20fb19d4c7e714a1b4487e8b5f5fe 100644
--- a/components/nacl/broker/nacl_broker_listener.cc
+++ b/components/nacl/broker/nacl_broker_listener.cc
@@ -114,7 +114,7 @@ void NaClBrokerListener::OnLaunchLoaderThroughBroker(
channel_pair.PassServerHandle();
mojo::edk::ScopedPlatformHandle client_handle =
channel_pair.PassClientHandle();
- base::HandlesToInheritVector handles;
+ std::vector<HANDLE> handles;
handles.push_back(client_handle.get().handle);
cmd_line->AppendSwitchASCII(
mojo::edk::PlatformChannelPair::kMojoPlatformChannelHandleSwitch,

Powered by Google App Engine
This is Rietveld 408576698