Chromium Code Reviews| Index: mojo/nacl/nonsfi/irt_mojo_nonsfi.h |
| diff --git a/mojo/nacl/nonsfi/irt_mojo_nonsfi.h b/mojo/nacl/nonsfi/irt_mojo_nonsfi.h |
| index 2895902882b46737ff58f4a8080ed35db5d59069..2a0fff4ca8214dd8866c38e4a989826a4a6ca27c 100644 |
| --- a/mojo/nacl/nonsfi/irt_mojo_nonsfi.h |
| +++ b/mojo/nacl/nonsfi/irt_mojo_nonsfi.h |
| @@ -7,12 +7,21 @@ |
| #include "mojo/public/c/system/functions.h" |
| +extern const struct nacl_irt_private_pnacl_translator_compile |
| + nacl_irt_private_pnacl_translator_compile; |
|
Mark Seaborn
2015/10/20 21:32:40
How about putting these in the namespace?
Sean Klein
2015/10/22 21:50:00
Done.
|
| +extern const struct nacl_irt_private_pnacl_translator_link |
| + nacl_irt_private_pnacl_translator_link; |
| +extern const struct nacl_irt_resource_open |
| + nacl_irt_resource_open; |
| + |
| namespace nacl { |
| // Used to pass handle to application. If uncalled, |
| // the handle defaults to MOJO_HANDLE_INVALID. |
| void MojoSetInitialHandle(MojoHandle handle); |
| +MojoResult _MojoGetInitialHandle(MojoHandle* handle); |
|
Mark Seaborn
2015/10/20 21:32:40
If you're moving this to a header, let's remove th
Sean Klein
2015/10/22 21:50:00
Done.
|
| + |
| // IRT interface query function which may be passed to nacl_irt_nonsfi_entry. |
| // Queries for a mojo interface, then for the irt core. |
| size_t MojoIrtNonsfiQuery(const char* interface_ident, |