| 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 58faad79efd2d1436d57b76c7b9d964a2f9edce5..de005dfe51ad037eda049981684d3c6646de2dfc 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);
|
| }
|
| @@ -1666,7 +1660,6 @@ const PPB_NaCl_Private nacl_interface = {
|
| &ReportLoadSuccess,
|
| &ReportLoadError,
|
| &ReportLoadAbort,
|
| - &NexeDidCrash,
|
| &InstanceCreated,
|
| &InstanceDestroyed,
|
| &NaClDebugEnabledForURL,
|
|
|