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

Unified Diff: components/nacl/common/nacl_host_messages.h

Issue 1085583005: Refactor params of NaClProcessMsg_Start. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/common/nacl_host_messages.h
diff --git a/components/nacl/common/nacl_host_messages.h b/components/nacl/common/nacl_host_messages.h
index 680b40e33f28e3ddbc3cabcf9fe8a43e92bacbde..f97949814c25e5cd9f2d9457da2cedd84b425433 100644
--- a/components/nacl/common/nacl_host_messages.h
+++ b/components/nacl/common/nacl_host_messages.h
@@ -20,12 +20,17 @@
#define IPC_MESSAGE_START NaClHostMsgStart
+IPC_STRUCT_TRAITS_BEGIN(nacl::NaClResourcePrefetchRequest)
+ IPC_STRUCT_TRAITS_MEMBER(file_key)
+ IPC_STRUCT_TRAITS_MEMBER(resource_url)
+IPC_STRUCT_TRAITS_END()
+
IPC_STRUCT_TRAITS_BEGIN(nacl::NaClLaunchParams)
IPC_STRUCT_TRAITS_MEMBER(manifest_url)
IPC_STRUCT_TRAITS_MEMBER(nexe_file)
IPC_STRUCT_TRAITS_MEMBER(nexe_token_lo)
IPC_STRUCT_TRAITS_MEMBER(nexe_token_hi)
- IPC_STRUCT_TRAITS_MEMBER(resource_files_to_prefetch)
+ IPC_STRUCT_TRAITS_MEMBER(resource_prefetch_request_list)
IPC_STRUCT_TRAITS_MEMBER(render_view_id)
IPC_STRUCT_TRAITS_MEMBER(permission_bits)
IPC_STRUCT_TRAITS_MEMBER(uses_nonsfi_mode)

Powered by Google App Engine
This is Rietveld 408576698