mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
remove extra semicolons (bug 218551)
This commit is contained in:
parent
285f3aeea3
commit
5a65a040e9
@ -60,10 +60,10 @@
|
||||
#define NS_COOKIEPROMPTSERVICE_CID \
|
||||
{0xCE002B28, 0x92B7, 0x4701, {0x86, 0x21, 0xCC, 0x92, 0x58, 0x66, 0xFB, 0x87}}
|
||||
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(SecurityDialogs);
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(CocoaPromptService);
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(KeychainPrompt);
|
||||
//NS_GENERIC_FACTORY_CONSTRUCTOR(nsDownloadListener);
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(SecurityDialogs)
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(CocoaPromptService)
|
||||
NS_GENERIC_FACTORY_CONSTRUCTOR(KeychainPrompt)
|
||||
//NS_GENERIC_FACTORY_CONSTRUCTOR(nsDownloadListener)
|
||||
|
||||
static NS_IMETHODIMP
|
||||
nsDownloadListenerConstructor(nsISupports *aOuter, REFNSIID aIID, void **aResult)
|
||||
|
@ -57,7 +57,7 @@ CocoaPromptService::~CocoaPromptService()
|
||||
{
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS2(CocoaPromptService, nsIPromptService, nsICookiePromptService);
|
||||
NS_IMPL_ISUPPORTS2(CocoaPromptService, nsIPromptService, nsICookiePromptService)
|
||||
|
||||
/* void alert (in nsIDOMWindow parent, in wstring dialogTitle, in wstring text); */
|
||||
NS_IMETHODIMP
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#import "CHBrowserView.h"
|
||||
|
||||
NS_IMPL_ISUPPORTS2(ContentClickListener, nsIDOMMouseListener, nsIDOMEventListener);
|
||||
NS_IMPL_ISUPPORTS2(ContentClickListener, nsIDOMMouseListener, nsIDOMEventListener)
|
||||
|
||||
ContentClickListener::ContentClickListener(id aBrowserController)
|
||||
:mBrowserController(aBrowserController)
|
||||
|
@ -57,7 +57,7 @@ SecurityDialogs::~SecurityDialogs()
|
||||
{
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS2(SecurityDialogs, nsIBadCertListener, nsISecurityWarningDialogs);
|
||||
NS_IMPL_ISUPPORTS2(SecurityDialogs, nsIBadCertListener, nsISecurityWarningDialogs)
|
||||
|
||||
// nsIBadCertListener implementation
|
||||
/* boolean confirmUnknownIssuer (in nsIInterfaceRequestor socketInfo,
|
||||
|
@ -102,7 +102,7 @@
|
||||
@end
|
||||
|
||||
|
||||
NS_IMPL_ISUPPORTS2(CHClickListener, nsIDOMMouseListener, nsIDOMEventListener);
|
||||
NS_IMPL_ISUPPORTS2(CHClickListener, nsIDOMMouseListener, nsIDOMEventListener)
|
||||
|
||||
CHClickListener::CHClickListener()
|
||||
{
|
||||
|
@ -76,7 +76,7 @@ DownloadListenerFactory::~DownloadListenerFactory()
|
||||
[mControllerFactory release];
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS1(DownloadListenerFactory, nsIFactory);
|
||||
NS_IMPL_ISUPPORTS1(DownloadListenerFactory, nsIFactory)
|
||||
|
||||
/* void createInstance (in nsISupports aOuter, in nsIIDRef iid, [iid_is (iid), retval] out nsQIResult result); */
|
||||
NS_IMETHODIMP
|
||||
|
@ -53,7 +53,7 @@ CHDownloader::~CHDownloader()
|
||||
[mDisplayFactory release];
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS1(CHDownloader, nsISupports);
|
||||
NS_IMPL_ISUPPORTS1(CHDownloader, nsISupports)
|
||||
|
||||
void
|
||||
CHDownloader::SetDisplayFactory(id<CHDownloadDisplayFactory> inDownloadControllerFactory)
|
||||
|
Loading…
x
Reference in New Issue
Block a user