diff --git a/ipc/glue/MessageChannel.cpp b/ipc/glue/MessageChannel.cpp index ff245958fc29..4442059dfad4 100644 --- a/ipc/glue/MessageChannel.cpp +++ b/ipc/glue/MessageChannel.cpp @@ -895,7 +895,7 @@ bool MessageChannel::MaybeInterceptSpecialIOMessage(const Message& aMsg) { return true; } else if (IMPENDING_SHUTDOWN_MESSAGE_TYPE == aMsg.type()) { IPC_LOG("Impending Shutdown received"); - ProcessChild::NotifyImpendingShutdown(); + ProcessChild::NotifiedImpendingShutdown(); return true; } } diff --git a/ipc/glue/ProcessChild.cpp b/ipc/glue/ProcessChild.cpp index fce6a596cae1..4430a8eece98 100644 --- a/ipc/glue/ProcessChild.cpp +++ b/ipc/glue/ProcessChild.cpp @@ -70,7 +70,7 @@ bool ProcessChild::InitPrefs(int aArgc, char* aArgv[]) { ProcessChild::~ProcessChild() { gProcessChild = nullptr; } /* static */ -void ProcessChild::NotifyImpendingShutdown() { +void ProcessChild::NotifiedImpendingShutdown() { sExpectingShutdown = true; CrashReporter::AnnotateCrashReport( CrashReporter::Annotation::IPCShutdownState, diff --git a/ipc/glue/ProcessChild.h b/ipc/glue/ProcessChild.h index 6f701768640f..760c7b4d67a1 100644 --- a/ipc/glue/ProcessChild.h +++ b/ipc/glue/ProcessChild.h @@ -39,7 +39,7 @@ class ProcessChild : public ChildProcess { static MessageLoop* message_loop() { return gProcessChild->mUILoop; } - static void NotifyImpendingShutdown(); + static void NotifiedImpendingShutdown(); static bool ExpectingShutdown();