aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/EphyPromptService.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-01-13 07:21:14 +0800
committerChristian Persch <chpe@src.gnome.org>2006-01-13 07:21:14 +0800
commit3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c (patch)
treec9ab12582e159802432fb1ad70b65d6deb369302 /embed/mozilla/EphyPromptService.h
parentdaf109345e833a5e2e366e09162c83fe5a213cc6 (diff)
downloadgsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar.gz
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar.bz2
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar.lz
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar.xz
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.tar.zst
gsoc2013-epiphany-3d42f2eccf6cdc5b4c8645fcbc97f66b46d7c70c.zip
A embed/mozilla/EphyPromptService.cpp: A
2006-01-13 Christian Persch <chpe@cvs.gnome.org> A embed/mozilla/EphyPromptService.cpp: A embed/mozilla/EphyPromptService.h: * embed/mozilla/Makefile.am: * embed/mozilla/MozRegisterComponents.cpp: * po/POTFILES.in: Implement nsIPromptService ourself.
Diffstat (limited to 'embed/mozilla/EphyPromptService.h')
-rw-r--r--embed/mozilla/EphyPromptService.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/embed/mozilla/EphyPromptService.h b/embed/mozilla/EphyPromptService.h
new file mode 100644
index 000000000..0eb100d76
--- /dev/null
+++ b/embed/mozilla/EphyPromptService.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2005, 2006 Christian Persch
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+
+#ifndef EPHY_PROMPT_SERVICE_H
+#define EPHY_PROMPT_SERVICE_H
+
+#include <nsIPromptService.h>
+
+#define EPHY_PROMPT_SERVICE_IID \
+{ /* 6e8b90d4-78a6-41c5-98da-b1559a40d30d */ \
+ 0x6e8b90d4, 0x78a6, 0x41c5, \
+ { 0x98, 0xda, 0xb1, 0x55, 0x9a, 0x40, 0xd3, 0x0d } }
+
+#define EPHY_PROMPT_SERVICE_CLASSNAME "Epiphany Prompt Service"
+
+class EphyPromptService : public nsIPromptService
+{
+public:
+ NS_DECL_ISUPPORTS
+ NS_DECL_NSIPROMPTSERVICE
+
+ EphyPromptService();
+ virtual ~EphyPromptService();
+};
+
+#endif /* EPHY_PROMPT_SERVICE_H */