| Index: components/nacl/renderer/ppb_nacl_private_impl.cc
|
| diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| index a9d909a5e322e8476a139b4205cf80f766e5e400..33c20043604a871cb037bfcbea4b892033cf27a1 100644
|
| --- a/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| +++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| @@ -263,6 +263,8 @@ int32_t GetNexeFd(PP_Instance instance,
|
| const char* last_modified,
|
| const char* etag,
|
| PP_Bool has_no_store_header,
|
| + const char* sandbox_isa,
|
| + const char* extra_flags,
|
| PP_Bool* is_hit,
|
| PP_FileHandle* handle,
|
| struct PP_CompletionCallback callback) {
|
| @@ -286,6 +288,8 @@ int32_t GetNexeFd(PP_Instance instance,
|
| cache_info.last_modified = last_modified_time;
|
| cache_info.etag = std::string(etag);
|
| cache_info.has_no_store_header = PP_ToBool(has_no_store_header);
|
| + cache_info.sandbox_isa = std::string(sandbox_isa);
|
| + cache_info.extra_flags = std::string(extra_flags);
|
|
|
| g_pnacl_resource_host.Get()->RequestNexeFd(
|
| GetRoutingID(instance),
|
|
|