| 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 eeaca7858d87190996e24170b142e64cd8842fa0..048130aea5346020ad58e8ac1c52ce4fe6b86efb 100644
|
| --- a/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| +++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| @@ -744,12 +744,14 @@ void DispatchEvent(PP_Instance instance,
|
| }
|
|
|
| void ReportLoadSuccess(PP_Instance instance,
|
| - const char* url,
|
| uint64_t loaded_bytes,
|
| uint64_t total_bytes) {
|
| NexeLoadManager* load_manager = GetNexeLoadManager(instance);
|
| - if (load_manager)
|
| - load_manager->ReportLoadSuccess(url, loaded_bytes, total_bytes);
|
| + if (load_manager) {
|
| + load_manager->ReportLoadSuccess(load_manager->program_url(),
|
| + loaded_bytes,
|
| + total_bytes);
|
| + }
|
| }
|
|
|
| void ReportLoadError(PP_Instance instance,
|
|
|