| Index: components/nacl/common/nacl_types.h
|
| diff --git a/components/nacl/common/nacl_types.h b/components/nacl/common/nacl_types.h
|
| index a4759b16b4714350d44bd9ed1690e54bc443168a..d4bd4c6de58aa359b5508047d0144467ff02fc41 100644
|
| --- a/components/nacl/common/nacl_types.h
|
| +++ b/components/nacl/common/nacl_types.h
|
| @@ -68,7 +68,10 @@ struct NaClStartParams {
|
| // nacl_host_messages.h.
|
| struct NaClLaunchParams {
|
| NaClLaunchParams();
|
| - NaClLaunchParams(const std::string& u, int r, uint32 p,
|
| + NaClLaunchParams(const std::string& document_url,
|
| + const std::string& manifest_url,
|
| + int render_view_id,
|
| + uint32 p,
|
| bool uses_irt,
|
| bool uses_nonsfi_mode,
|
| bool enable_dyncode_syscalls,
|
| @@ -77,6 +80,7 @@ struct NaClLaunchParams {
|
| NaClLaunchParams(const NaClLaunchParams& l);
|
| ~NaClLaunchParams();
|
|
|
| + std::string document_url;
|
| std::string manifest_url;
|
| int render_view_id;
|
| uint32 permission_bits;
|
|
|