зеркало из https://github.com/mozilla/pjs.git
attempting to fix build bustage
This commit is contained in:
Родитель
d03688943c
Коммит
fd44dafd5c
|
@ -72,4 +72,20 @@ nsSimpleNotifier::InstallAborted(void)
|
|||
printf("Installation aborted.\n");
|
||||
}
|
||||
|
||||
NS_IMETHOD
|
||||
nsSimpleNotifier::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
||||
{
|
||||
printf("Query Interface.\n");
|
||||
}
|
||||
|
||||
NS_IMETHOD_(nsrefcnt)
|
||||
nsSimpleNotifier::AddRef(void)
|
||||
{
|
||||
printf("Add Reference.\n");
|
||||
}
|
||||
|
||||
NS_IMETHOD_(nsrefcnt)
|
||||
nsSimpleNotifier::Release(void)
|
||||
{
|
||||
printf("Release.\n");
|
||||
}
|
||||
|
|
|
@ -36,12 +36,15 @@ class nsSimpleNotifier : public nsIXPINotifier
|
|||
nsSimpleNotifier();
|
||||
virtual ~nsSimpleNotifier();
|
||||
|
||||
NS_IMETHOD BeforeJavascriptEvaluation();
|
||||
NS_IMETHOD AfterJavascriptEvaluation();
|
||||
NS_IMETHOD InstallStarted(const char *UIPackageName);
|
||||
NS_IMETHOD ItemScheduled(const char *message);
|
||||
NS_IMETHOD InstallFinalization(const char *message, PRInt32 itemNum, PRInt32 totNum);
|
||||
NS_IMETHOD InstallAborted();
|
||||
NS_IMETHOD BeforeJavascriptEvaluation();
|
||||
NS_IMETHOD AfterJavascriptEvaluation();
|
||||
NS_IMETHOD InstallStarted(const char *UIPackageName);
|
||||
NS_IMETHOD ItemScheduled(const char *message);
|
||||
NS_IMETHOD InstallFinalization(const char *message, PRInt32 itemNum, PRInt32 totNum);
|
||||
NS_IMETHOD InstallAborted();
|
||||
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr);
|
||||
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
||||
NS_IMETHOD_(nsrefcnt) Release(void);
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
#include "nsSoftwareUpdateIIDs.h"
|
||||
|
||||
static nsISoftwareUpdate *softwareUpdate= NULL;
|
||||
static NS_DEFINE_IID(kFileLocatorIID, NS_IFILELOCATOR_IID);
|
||||
static NS_DEFINE_IID(kFileLocatorCID, NS_FILELOCATOR_CID);
|
||||
static NS_DEFINE_IID(kISoftwareUpdateIID, NS_ISOFTWAREUPDATE_IID);
|
||||
static NS_DEFINE_IID(kSoftwareUpdateCID, NS_SoftwareUpdate_CID);
|
||||
/*********************************************/
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче