| 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 44af080991f80e15921c36f8a64b94ae23d69183..c5cef0d227483c39e86eceaafe25a4919035ce31 100644
|
| --- a/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| +++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| @@ -749,12 +749,6 @@ void ReportLoadAbort(PP_Instance instance) {
|
| load_manager->ReportLoadAbort();
|
| }
|
|
|
| -void NexeDidCrash(PP_Instance instance) {
|
| - NexeLoadManager* load_manager = NexeLoadManager::Get(instance);
|
| - if (load_manager)
|
| - load_manager->NexeDidCrash();
|
| -}
|
| -
|
| void InstanceCreated(PP_Instance instance) {
|
| NexeLoadManager::Create(instance);
|
| }
|
| @@ -1684,7 +1678,6 @@ const PPB_NaCl_Private nacl_interface = {
|
| &ReportLoadSuccess,
|
| &ReportLoadError,
|
| &ReportLoadAbort,
|
| - &NexeDidCrash,
|
| &InstanceCreated,
|
| &InstanceDestroyed,
|
| &NaClDebugEnabledForURL,
|
|
|