| Index: ppapi/native_client/src/trusted/plugin/service_runtime.cc
|
| diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
|
| index f396a38ada0a90fbc3570c071fa6a0f88d69cef3..c5e74cd377d7c9363cd0c98dbc9acd4d2d421d33 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
|
| @@ -246,7 +246,8 @@ void PluginReverseInterface::OpenManifestEntry_MainThreadContinuation(
|
| NaClLog(4, "Entered OpenManifestEntry_MainThreadContinuation\n");
|
|
|
| std::string mapped_url;
|
| - if (!manifest_->ResolveKey(p->url, &mapped_url,
|
| + std::string cache_identity;
|
| + if (!manifest_->ResolveKey(p->url, &mapped_url, &cache_identity,
|
| p->error_info, &p->pnacl_translate)) {
|
| NaClLog(4, "OpenManifestEntry_MainThreadContinuation: ResolveKey failed\n");
|
| // Failed, and error_info has the details on what happened. Wake
|
| @@ -300,6 +301,7 @@ void PluginReverseInterface::OpenManifestEntry_MainThreadContinuation(
|
| pnacl_coordinator_.reset(
|
| PnaclCoordinator::BitcodeToNative(plugin_,
|
| mapped_url,
|
| + cache_identity,
|
| translate_callback));
|
| }
|
| // p is deleted automatically
|
|
|