mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1045289 - Change uses of "XPCom" to "XPCOM". r=froydnj
This commit is contained in:
parent
509c03f2a3
commit
155b28578a
@ -4,7 +4,7 @@
|
||||
const Ci = Components.interfaces;
|
||||
const Cu = Components.utils;
|
||||
|
||||
// The following boilerplate makes sure that XPCom calls
|
||||
// The following boilerplate makes sure that XPCOM calls
|
||||
// that use the profile directory work.
|
||||
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
|
@ -11,7 +11,7 @@ Cu.import("resource://testing-common/httpd.js");
|
||||
// XXX until bug 937114 is fixed
|
||||
Cu.importGlobalProperties(["atob"]);
|
||||
|
||||
// The following boilerplate makes sure that XPCom calls
|
||||
// The following boilerplate makes sure that XPCOM calls
|
||||
// that use the profile directory work.
|
||||
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
|
@ -2926,7 +2926,7 @@ class XREMain
|
||||
{
|
||||
public:
|
||||
XREMain() :
|
||||
mScopedXPCom(nullptr)
|
||||
mScopedXPCOM(nullptr)
|
||||
, mAppData(nullptr)
|
||||
, mStartOffline(false)
|
||||
, mShuttingDown(false)
|
||||
@ -2942,9 +2942,9 @@ public:
|
||||
if (mAppData) {
|
||||
delete mAppData;
|
||||
}
|
||||
if (mScopedXPCom) {
|
||||
if (mScopedXPCOM) {
|
||||
NS_WARNING("Scoped xpcom should have been deleted!");
|
||||
delete mScopedXPCom;
|
||||
delete mScopedXPCOM;
|
||||
}
|
||||
}
|
||||
|
||||
@ -2962,7 +2962,7 @@ public:
|
||||
nsCOMPtr<nsIRemoteService> mRemoteService;
|
||||
#endif
|
||||
|
||||
ScopedXPCOMStartup* mScopedXPCom;
|
||||
ScopedXPCOMStartup* mScopedXPCOM;
|
||||
ScopedAppData* mAppData;
|
||||
nsXREDirProvider mDirProvider;
|
||||
nsAutoCString mProfileName;
|
||||
@ -3917,7 +3917,7 @@ nsresult
|
||||
XREMain::XRE_mainRun()
|
||||
{
|
||||
nsresult rv = NS_OK;
|
||||
NS_ASSERTION(mScopedXPCom, "Scoped xpcom not initialized.");
|
||||
NS_ASSERTION(mScopedXPCOM, "Scoped xpcom not initialized.");
|
||||
|
||||
#ifdef MOZ_B2G_LOADER
|
||||
mozilla::ipc::ProcLoaderClientGeckoInit();
|
||||
@ -3943,7 +3943,7 @@ XREMain::XRE_mainRun()
|
||||
}
|
||||
#endif
|
||||
|
||||
rv = mScopedXPCom->SetWindowCreator(mNativeApp);
|
||||
rv = mScopedXPCOM->SetWindowCreator(mNativeApp);
|
||||
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
|
||||
|
||||
#ifdef MOZ_CRASHREPORTER
|
||||
@ -4224,11 +4224,11 @@ XREMain::XRE_main(int argc, char* argv[], const nsXREAppData* aAppData)
|
||||
bool appInitiatedRestart = false;
|
||||
|
||||
// Start the real application
|
||||
mScopedXPCom = new ScopedXPCOMStartup();
|
||||
if (!mScopedXPCom)
|
||||
mScopedXPCOM = new ScopedXPCOMStartup();
|
||||
if (!mScopedXPCOM)
|
||||
return 1;
|
||||
|
||||
rv = mScopedXPCom->Initialize();
|
||||
rv = mScopedXPCOM->Initialize();
|
||||
NS_ENSURE_SUCCESS(rv, 1);
|
||||
|
||||
// run!
|
||||
@ -4257,8 +4257,8 @@ XREMain::XRE_main(int argc, char* argv[], const nsXREAppData* aAppData)
|
||||
#endif /* MOZ_ENABLE_XREMOTE */
|
||||
}
|
||||
|
||||
delete mScopedXPCom;
|
||||
mScopedXPCom = nullptr;
|
||||
delete mScopedXPCOM;
|
||||
mScopedXPCOM = nullptr;
|
||||
|
||||
// unlock the profile after ScopedXPCOMStartup object (xpcom)
|
||||
// has gone out of scope. see bug #386739 for more details
|
||||
@ -4330,11 +4330,11 @@ XRE_metroStartup(bool runXREMain)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
// Start the real application
|
||||
xreMainPtr->mScopedXPCom = new ScopedXPCOMStartup();
|
||||
if (!xreMainPtr->mScopedXPCom)
|
||||
xreMainPtr->mScopedXPCOM = new ScopedXPCOMStartup();
|
||||
if (!xreMainPtr->mScopedXPCOM)
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
rv = xreMainPtr->mScopedXPCom->Initialize();
|
||||
rv = xreMainPtr->mScopedXPCOM->Initialize();
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
if (runXREMain) {
|
||||
@ -4347,8 +4347,8 @@ XRE_metroStartup(bool runXREMain)
|
||||
void
|
||||
XRE_metroShutdown()
|
||||
{
|
||||
delete xreMainPtr->mScopedXPCom;
|
||||
xreMainPtr->mScopedXPCom = nullptr;
|
||||
delete xreMainPtr->mScopedXPCOM;
|
||||
xreMainPtr->mScopedXPCOM = nullptr;
|
||||
|
||||
#ifdef MOZ_INSTRUMENT_EVENT_LOOP
|
||||
mozilla::ShutdownEventTracing();
|
||||
@ -4428,7 +4428,7 @@ XRE_mainMetro(int argc, char* argv[], const nsXREAppData* aAppData)
|
||||
|
||||
// XRE_metroShutdown should have already been called on the worker
|
||||
// thread that called XRE_metroStartup.
|
||||
NS_ASSERTION(!xreMainPtr->mScopedXPCom,
|
||||
NS_ASSERTION(!xreMainPtr->mScopedXPCOM,
|
||||
"XPCOM Shutdown hasn't occured, and we are exiting.");
|
||||
return 0;
|
||||
}
|
||||
|
@ -4,8 +4,8 @@
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#ifndef nsXPComPrivate_h__
|
||||
#define nsXPComPrivate_h__
|
||||
#ifndef nsXPCOMPrivate_h__
|
||||
#define nsXPCOMPrivate_h__
|
||||
|
||||
#include "nscore.h"
|
||||
#include "nsXPCOM.h"
|
||||
|
Loading…
Reference in New Issue
Block a user