| Index: chrome/renderer/pepper/ppb_nacl_private_impl.cc
|
| diff --git a/chrome/renderer/pepper/ppb_nacl_private_impl.cc b/chrome/renderer/pepper/ppb_nacl_private_impl.cc
|
| index 91ce85c8b76b2879f1456f1f72ad28da6eed57e4..ce95b628647439531600a98a35969db8426fa5f4 100644
|
| --- a/chrome/renderer/pepper/ppb_nacl_private_impl.cc
|
| +++ b/chrome/renderer/pepper/ppb_nacl_private_impl.cc
|
| @@ -290,12 +290,12 @@ int32_t GetNexeFd(PP_Instance instance,
|
| return enter.SetResult(PP_OK_COMPLETIONPENDING);
|
| }
|
|
|
| -void ReportTranslationFinished(PP_Instance instance) {
|
| +void ReportTranslationFinished(PP_Instance instance, PP_Bool success) {
|
| // If the resource host isn't initialized, don't try to do that here.
|
| // Just return because something is already very wrong.
|
| if (g_pnacl_resource_host.Get() == NULL)
|
| return;
|
| - g_pnacl_resource_host.Get()->ReportTranslationFinished(instance);
|
| + g_pnacl_resource_host.Get()->ReportTranslationFinished(instance, success);
|
| }
|
|
|
| PP_Bool IsOffTheRecord() {
|
|
|