aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed-shell.c19
-rw-r--r--embed/mozilla/Makefile.am2
-rw-r--r--embed/mozilla/MozRegisterComponents.cpp8
3 files changed, 0 insertions, 29 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 37f57a1bf..fe4dedebe 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -26,12 +26,6 @@
#include <string.h>
-enum
-{
- COMMAND,
- LAST_SIGNAL
-};
-
struct EphyEmbedShellPrivate
{
EphyHistory *global_history;
@@ -54,7 +48,6 @@ static DownloaderView *
impl_get_downloader_view (EphyEmbedShell *shell);
static GObjectClass *parent_class = NULL;
-static guint ephy_embed_shell_signals[LAST_SIGNAL] = { 0 };
EphyEmbedShell *embed_shell;
@@ -96,18 +89,6 @@ ephy_embed_shell_class_init (EphyEmbedShellClass *klass)
object_class->finalize = ephy_embed_shell_finalize;
klass->get_downloader_view = impl_get_downloader_view;
klass->get_global_history = impl_get_global_history;
-
- ephy_embed_shell_signals[COMMAND] =
- g_signal_new ("command",
- G_OBJECT_CLASS_TYPE (object_class),
- G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (EphyEmbedShellClass, command),
- NULL, NULL,
- ephy_marshal_VOID__STRING_STRING,
- G_TYPE_NONE,
- 2,
- G_TYPE_STRING,
- G_TYPE_STRING);
}
static void
diff --git a/embed/mozilla/Makefile.am b/embed/mozilla/Makefile.am
index 59eba1291..30ce0d2c7 100644
--- a/embed/mozilla/Makefile.am
+++ b/embed/mozilla/Makefile.am
@@ -87,8 +87,6 @@ libephymozillaembed_la_SOURCES = \
PrintProgressListener.h \
ProgressListener.cpp \
ProgressListener.h \
- StartHereProtocolHandler.cpp \
- StartHereProtocolHandler.h \
mozilla-embed.cpp \
mozilla-embed.h \
mozilla-embed-persist.cpp \
diff --git a/embed/mozilla/MozRegisterComponents.cpp b/embed/mozilla/MozRegisterComponents.cpp
index cd68b8c4d..353deba88 100644
--- a/embed/mozilla/MozRegisterComponents.cpp
+++ b/embed/mozilla/MozRegisterComponents.cpp
@@ -23,7 +23,6 @@
#include "ContentHandler.h"
#include "FilePicker.h"
#include "FtpProtocolHandler.h"
-#include "StartHereProtocolHandler.h"
#include "GlobalHistory.h"
#include "IRCProtocolHandler.h"
#include "MailtoProtocolHandler.h"
@@ -40,7 +39,6 @@
#include <glib.h>
NS_GENERIC_FACTORY_CONSTRUCTOR(EphyAboutRedirector)
-NS_GENERIC_FACTORY_CONSTRUCTOR(GStartHereProtocolHandler)
NS_GENERIC_FACTORY_CONSTRUCTOR(GProgressListener)
NS_GENERIC_FACTORY_CONSTRUCTOR(GFilePicker)
NS_GENERIC_FACTORY_CONSTRUCTOR(GContentHandler)
@@ -112,12 +110,6 @@ static const nsModuleComponentInfo sAppComps[] = {
GFtpProtocolHandlerConstructor
},
{
- G_START_HERE_PROTOCOLHANDLER_CLASSNAME,
- G_START_HERE_PROTOCOLHANDLER_CID,
- G_START_HERE_PROTOCOLHANDLER_CONTRACTID,
- GStartHereProtocolHandlerConstructor
- },
- {
EPHY_ABOUT_REDIRECTOR_CLASSNAME,
EPHY_ABOUT_REDIRECTOR_CID,
EPHY_ABOUT_REDIRECTOR_EPIPHANY_CONTRACTID,