Bug 1755376: Rename receiving NotifyImpendingShutdown to distinguish send and receive case. r=ipc-reviewers,mccr8

Differential Revision: https://phabricator.services.mozilla.com/D139257
This commit is contained in:
Jens Stutte 2022-02-23 15:45:24 +00:00
Родитель 83c4461b1b
Коммит 5d4e23141d
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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;
}
}

Просмотреть файл

@ -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,

Просмотреть файл

@ -39,7 +39,7 @@ class ProcessChild : public ChildProcess {
static MessageLoop* message_loop() { return gProcessChild->mUILoop; }
static void NotifyImpendingShutdown();
static void NotifiedImpendingShutdown();
static bool ExpectingShutdown();