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

Unified Diff: mojo/nacl/monacl_shell.cc

Issue 884303002: Launch nexes from mojo_shell. Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Whitepace Created 5 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
Index: mojo/nacl/monacl_shell.cc
diff --git a/mojo/nacl/monacl_shell.cc b/mojo/nacl/monacl_shell.cc
index 7922d9a60de241470762cd22cf15ba103a477bb4..0efe2a705d8972f2c99a42dbd43fcbf399da3175 100644
--- a/mojo/nacl/monacl_shell.cc
+++ b/mojo/nacl/monacl_shell.cc
@@ -23,6 +23,7 @@ int main(int argc, char* argv[]) {
new mojo::embedder::SimplePlatformSupport()));
// Does not return.
- mojo::LaunchNaCl(nexe_file, irt_file, argc - 2, argv + 2);
+ mojo::LaunchNaCl(nexe_file, irt_file, argc - 2, argv + 2,
+ MOJO_HANDLE_INVALID);
jamesr 2015/01/28 23:11:30 MOJO_INVALID_HANDLE ?
Nick Bray (chromium) 2015/01/29 22:31:34 Grep shows no such beast? I believe this is the c
jamesr 2015/01/29 22:32:03 That's not what I meant - why are we passing an in
Nick Bray (chromium) 2015/01/29 22:34:54 Because this is a test rig for running the embedde
return 1;
}

Powered by Google App Engine
This is Rietveld 408576698