зеркало из https://github.com/mozilla/gecko-dev.git
Bug 665534 - Fix unused variable warnings in nsEmbedFunctions.cpp; r=Mossop
This commit is contained in:
Родитель
3ee6f4f68e
Коммит
e00243b9bf
|
@ -105,6 +105,8 @@
|
|||
#include "mozilla/ipc/TestShellParent.h"
|
||||
#include "mozilla/ipc/XPCShellEnvironment.h"
|
||||
|
||||
#include "mozilla/Util.h" // for DebugOnly
|
||||
|
||||
#ifdef MOZ_IPDL_TESTS
|
||||
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
||||
#include "mozilla/_ipdltest/IPDLUnitTestProcessChild.h"
|
||||
|
@ -417,7 +419,7 @@ XRE_InitChildProcess(int aArgc,
|
|||
NS_ABORT_IF_FALSE(!*end, "invalid parent PID");
|
||||
|
||||
base::ProcessHandle parentHandle;
|
||||
bool ok = base::OpenProcessHandle(parentPID, &parentHandle);
|
||||
mozilla::DebugOnly<bool> ok = base::OpenProcessHandle(parentPID, &parentHandle);
|
||||
NS_ABORT_IF_FALSE(ok, "can't open handle to parent");
|
||||
|
||||
#if defined(XP_WIN)
|
||||
|
@ -683,7 +685,7 @@ XRE_ShutdownChildProcess()
|
|||
{
|
||||
NS_ABORT_IF_FALSE(MessageLoopForUI::current(), "Wrong thread!");
|
||||
|
||||
MessageLoop* ioLoop = XRE_GetIOMessageLoop();
|
||||
mozilla::DebugOnly<MessageLoop*> ioLoop = XRE_GetIOMessageLoop();
|
||||
NS_ABORT_IF_FALSE(!!ioLoop, "Bad shutdown order");
|
||||
|
||||
// Quit() sets off the following chain of events
|
||||
|
|
Загрузка…
Ссылка в новой задаче