Bug 271824: do_GetFastLoadService should use nsGetServiceByCID. r=/sr=/a=bsmedberg

This commit is contained in:
jag@tty.nl 2007-09-05 02:13:57 -07:00
Родитель a9c77babea
Коммит ef8c444de6
5 изменённых файлов: 12 добавлений и 12 удалений

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

@ -83,9 +83,8 @@
#include "jscntxt.h" // for JSVERSION_HAS_XML #include "jscntxt.h" // for JSVERSION_HAS_XML
#include "nsCRT.h" #include "nsCRT.h"
#include "nsIFastLoadService.h" // XXXbe temporary #include "nsXULPrototypeDocument.h" // XXXbe temporary
#include "nsIObjectInputStream.h" // XXXbe temporary #include "nsICSSLoader.h"
#include "nsXULDocument.h" // XXXbe temporary
#include "nsUnicharUtils.h" #include "nsUnicharUtils.h"
#include "nsGkAtoms.h" #include "nsGkAtoms.h"

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

@ -104,7 +104,6 @@
#include "nsIXBLService.h" #include "nsIXBLService.h"
#include "nsCExternalHandlerService.h" #include "nsCExternalHandlerService.h"
#include "nsMimeTypes.h" #include "nsMimeTypes.h"
#include "nsIFastLoadService.h"
#include "nsIObjectInputStream.h" #include "nsIObjectInputStream.h"
#include "nsIObjectOutputStream.h" #include "nsIObjectOutputStream.h"
#include "nsIFocusController.h" #include "nsIFocusController.h"

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

@ -79,8 +79,6 @@ class nsIXULPrototypeScript;
struct JSObject; struct JSObject;
struct PRLogModuleInfo; struct PRLogModuleInfo;
#include "nsIFastLoadService.h" // XXXbe temporary?
/** /**
* The XUL document class * The XUL document class
*/ */

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

@ -59,8 +59,6 @@
#include "nsIPrincipal.h" #include "nsIPrincipal.h"
#endif #endif
class nsIFastLoadService;
/* 6bd13476-1dd2-11b2-bbef-f0ccb5fa64b6 (thanks, mozbot) */ /* 6bd13476-1dd2-11b2-bbef-f0ccb5fa64b6 (thanks, mozbot) */
#define MOZJSCOMPONENTLOADER_CID \ #define MOZJSCOMPONENTLOADER_CID \

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

@ -133,11 +133,17 @@ interface nsIFastLoadService : nsISupports
# include "nsIServiceManager.h" # include "nsIServiceManager.h"
#endif #endif
inline const nsGetServiceByCIDWithError inline const nsGetServiceByContractID
do_GetFastLoadService(nsresult *aResultCode = 0) do_GetFastLoadService()
{ {
static NS_DEFINE_CID(kFastLoadServiceCID, NS_FASTLOADSERVICE_CID); return nsGetServiceByContractID(NS_FASTLOADSERVICE_CONTRACTID);
return nsGetServiceByCIDWithError(kFastLoadServiceCID, aResultCode); }
inline const nsGetServiceByContractIDWithError
do_GetFastLoadService(nsresult *aResultCode)
{
return nsGetServiceByContractIDWithError(NS_FASTLOADSERVICE_CONTRACTID,
aResultCode);
} }
inline nsresult inline nsresult