aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/GtkNSSDialogs.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-09-19 19:48:35 +0800
committerChristian Persch <chpe@src.gnome.org>2003-09-19 19:48:35 +0800
commita5847dd37c91a495db614312d4a5bd719d074991 (patch)
treeaafb78236e26f757a7d92c34c2ceff7b98a22cae /embed/mozilla/GtkNSSDialogs.h
parent741ded15967b19b78879bcc9e8f172895eb984ff (diff)
downloadgsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar.gz
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar.bz2
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar.lz
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar.xz
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.tar.zst
gsoc2013-epiphany-a5847dd37c91a495db614312d4a5bd719d074991.zip
embed/mozilla/MozRegisterComponents.cpp A embed/mozilla/GtkNSSDialogs.cpp
2003-09-19 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/MozRegisterComponents.cpp A embed/mozilla/GtkNSSDialogs.cpp A embed/mozilla/GtkNSSDialogs.h * embed/mozilla/Makefile.am * configure.in: Implement Gtk versions of the mozilla certificate prompts. Ported from galeon -- many thanks to Crispin for this excellent work!
Diffstat (limited to 'embed/mozilla/GtkNSSDialogs.h')
-rw-r--r--embed/mozilla/GtkNSSDialogs.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/embed/mozilla/GtkNSSDialogs.h b/embed/mozilla/GtkNSSDialogs.h
new file mode 100644
index 000000000..7e7f41e40
--- /dev/null
+++ b/embed/mozilla/GtkNSSDialogs.h
@@ -0,0 +1,31 @@
+/*
+ * GtkNSSDialogs.h
+ *
+ * Copyright (C) 2003 Crispin Flowerday <gnome@flowerday.cx>
+ * Available under the terms of the GNU General Public License version 2.
+ */
+
+#ifndef GTKNSSDIALOGS_H
+#define GTKNSSDIALOGS_H 1
+
+#include <nsError.h>
+#include "nsIBadCertListener.h"
+
+// 7a50a10d-9425-4e12-84b1-5822edacd8ce
+#define GTK_NSSDIALOGS_CID \
+ {0x7a50a10d, 0x9425, 0x4e12, {0x84, 0xb1, 0x58, 0x22, 0xed, 0xac, 0xd8, 0xce}}
+
+#define GTK_NSSDIALOGS_CLASSNAME "Gtk NSS Dialogs"
+
+class GtkNSSDialogs : public nsIBadCertListener
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIBADCERTLISTENER
+
+ GtkNSSDialogs();
+ virtual ~GtkNSSDialogs();
+};
+
+
+#endif /* GTKNSSDIALOGS_H */