Chromium Code Reviews| Index: components/nacl/common/nacl_messages.h |
| diff --git a/components/nacl/common/nacl_messages.h b/components/nacl/common/nacl_messages.h |
| index 3bdd16e1ddae6b390372eac617675b54d1656214..f07648cd4148cb77509e27d94418b0c7bb8867ba 100644 |
| --- a/components/nacl/common/nacl_messages.h |
| +++ b/components/nacl/common/nacl_messages.h |
| @@ -17,7 +17,6 @@ |
| IPC_STRUCT_TRAITS_BEGIN(nacl::NaClStartParams) |
| IPC_STRUCT_TRAITS_MEMBER(nexe_file) |
| IPC_STRUCT_TRAITS_MEMBER(nexe_file_path_metadata) |
| - IPC_STRUCT_TRAITS_MEMBER(prefetched_resource_files) |
| IPC_STRUCT_TRAITS_MEMBER(imc_bootstrap_handle) |
| IPC_STRUCT_TRAITS_MEMBER(irt_handle) |
| #if defined(OS_MACOSX) |
| @@ -48,6 +47,10 @@ IPC_STRUCT_TRAITS_END() |
| IPC_MESSAGE_CONTROL1(NaClProcessMsg_Start, |
| nacl::NaClStartParams /* params */) |
| +// Sends prefetched resource files to a NaCl loader process. |
|
Mark Seaborn
2015/05/08 00:35:36
Can you document the ordering here? Which message
Yusuke Sato
2015/05/08 15:12:35
Done.
|
| +IPC_MESSAGE_CONTROL1(NaClProcessMsg_SetPrefetchedResource, |
|
Mark Seaborn
2015/05/08 00:35:36
Naming nit: How about "Add" rather than "Set"?
Yusuke Sato
2015/05/08 15:12:35
Done.
|
| + std::vector<nacl::NaClResourcePrefetchResult>) |
| + |
| #if defined(OS_WIN) |
| // Tells the NaCl broker to launch a NaCl loader process. |
| IPC_MESSAGE_CONTROL1(NaClProcessMsg_LaunchLoaderThroughBroker, |