Follow-up to bug 1060997 to fix the build bustage

This commit is contained in:
Ehsan Akhgari 2014-08-31 21:14:53 -04:00
parent 4a47ec0f0c
commit 548bfead77

View File

@ -143,10 +143,10 @@ void ChildProcessHost::OnWaitableEventSignaled(base::WaitableEvent *event) {
bool did_crash = base::DidProcessCrash(NULL, object);
if (did_crash) {
// Report that this child process crashed.
Notify(NotificationType::CHILD_PROCESS_CRASHED);
Notify(NotificationType(NotificationType::CHILD_PROCESS_CRASHED));
}
// Notify in the main loop of the disconnection.
Notify(NotificationType::CHILD_PROCESS_HOST_DISCONNECTED);
Notify(NotificationType(NotificationType::CHILD_PROCESS_HOST_DISCONNECTED));
#endif
}