diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-07-23 03:05:20 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-07-23 03:05:20 +0800 |
commit | cc4f8cb9866d2d1df8ded5e48491d4a5154f031b (patch) | |
tree | 3750f7fcb0637291ddd8beffec41c8d28e6eb53d /embed/mozilla/MozRegisterComponents.cpp | |
parent | 2bbc8ce5db41c0e1f956af24ede67f7946fc844d (diff) | |
download | gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar.gz gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar.bz2 gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar.lz gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar.xz gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.tar.zst gsoc2013-epiphany-cc4f8cb9866d2d1df8ded5e48491d4a5154f031b.zip |
Implement nsIFormSigningDialog. Bug #312869.
2006-07-22 Christian Persch <chpe@cvs.gnome.org>
* data/glade/Makefile.am:
* data/glade/form-signing-dialog.glade:
* embed/mozilla/GeckoFormSigningDialog.cpp:
* embed/mozilla/GeckoFormSigningDialog.h:
* embed/mozilla/MozRegisterComponents.cpp:
Implement nsIFormSigningDialog. Bug #312869.
Diffstat (limited to 'embed/mozilla/MozRegisterComponents.cpp')
-rw-r--r-- | embed/mozilla/MozRegisterComponents.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/embed/mozilla/MozRegisterComponents.cpp b/embed/mozilla/MozRegisterComponents.cpp index 1c93ebeed..86ce9fc21 100644 --- a/embed/mozilla/MozRegisterComponents.cpp +++ b/embed/mozilla/MozRegisterComponents.cpp @@ -73,6 +73,7 @@ #include "GtkNSSDialogs.h" #include "GtkNSSKeyPairDialogs.h" #include "GtkNSSSecurityWarningDialogs.h" +#include "GeckoFormSigningDialog.h" #endif NS_GENERIC_FACTORY_CONSTRUCTOR(EphyAboutModule) @@ -98,6 +99,7 @@ NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSClientAuthDialogs) NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSDialogs) NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSKeyPairDialogs) NS_GENERIC_FACTORY_CONSTRUCTOR(GtkNSSSecurityWarningDialogs) +NS_GENERIC_FACTORY_CONSTRUCTOR(GeckoFormSigningDialog) #endif #define XPINSTALL_CONTRACTID NS_CONTENT_HANDLER_CONTRACTID_PREFIX "application/x-xpinstall" @@ -194,7 +196,13 @@ static const nsModuleComponentInfo sAppComps[] = { NS_SECURITYWARNINGDIALOGS_CONTRACTID, GtkNSSSecurityWarningDialogsConstructor }, -#endif + { + GECKO_FORMSIGNINGDIALOGS_CLASSNAME, + GECKO_FORMSIGNINGDIALOGS_CID, + NS_FORMSIGNINGDIALOG_CONTRACTID, + GeckoFormSigningDialogConstructor + }, +#endif /* HAVE_MOZILLA_PSM */ { NS_IHELPERAPPLAUNCHERDLG_CLASSNAME, G_CONTENTHANDLER_CID, |