aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-20 19:15:09 +0800
committerXan Lopez <xan@igalia.com>2012-03-20 19:15:09 +0800
commitf788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb (patch)
tree0382bb1e4cab624b9e80403de0e0379a92f97f15 /src
parentfaf0c7c89a02f38e2272048ae6aa3ba3e11e5f63 (diff)
downloadgsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.gz
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.bz2
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.lz
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.xz
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.tar.zst
gsoc2013-epiphany-f788322f9acdf3b490e3bba7aaf3c4c8d66f9ffb.zip
Remove EphyHistory from the repository. It's unused now.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am2
-rw-r--r--src/ephy-completion-model.c3
-rw-r--r--src/ephy-history-window.h1
3 files changed, 0 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7ea753b5b..0d75a298c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -224,7 +224,6 @@ EPHY_GIR_H_FILES = \
$(top_srcdir)/embed/ephy-embed-event.h \
$(top_srcdir)/embed/ephy-embed-shell.h \
$(top_srcdir)/embed/ephy-embed-single.h \
- $(top_srcdir)/embed/ephy-history.h \
$(top_srcdir)/embed/ephy-permission-manager.h \
$(top_srcdir)/embed/ephy-web-view.h \
$(top_srcdir)/lib/ephy-dialog.h \
@@ -253,7 +252,6 @@ EPHY_GIR_C_FILES = \
$(top_srcdir)/embed/ephy-embed-event.c \
$(top_srcdir)/embed/ephy-embed-shell.c \
$(top_srcdir)/embed/ephy-embed-single.c \
- $(top_srcdir)/embed/ephy-history.c \
$(top_srcdir)/embed/ephy-permission-manager.c \
$(top_srcdir)/embed/ephy-web-view.c \
$(top_srcdir)/lib/ephy-dialog.c \
diff --git a/src/ephy-completion-model.c b/src/ephy-completion-model.c
index 9b6507e1a..bea7776f0 100644
--- a/src/ephy-completion-model.c
+++ b/src/ephy-completion-model.c
@@ -23,7 +23,6 @@
#include "ephy-embed-prefs.h"
#include "ephy-embed-shell.h"
-#include "ephy-history.h"
#include "ephy-history-service.h"
#include "ephy-shell.h"
@@ -35,7 +34,6 @@ G_DEFINE_TYPE (EphyCompletionModel, ephy_completion_model, GTK_TYPE_LIST_STORE)
struct _EphyCompletionModelPrivate {
EphyHistoryService *history_service;
- EphyHistory *legacy_history_service;
EphyNode *bookmarks;
GSList *search_terms;
@@ -97,7 +95,6 @@ ephy_completion_model_init (EphyCompletionModel *model)
model->priv = priv = EPHY_COMPLETION_MODEL_GET_PRIVATE (model);
priv->history_service = EPHY_HISTORY_SERVICE (ephy_embed_shell_get_global_history_service (embed_shell));
- priv->legacy_history_service = EPHY_HISTORY (ephy_embed_shell_get_global_history (embed_shell));
bookmarks_service = ephy_shell_get_bookmarks (ephy_shell);
priv->bookmarks = ephy_bookmarks_get_bookmarks (bookmarks_service);
diff --git a/src/ephy-history-window.h b/src/ephy-history-window.h
index 6d7a15a99..a5c98f40d 100644
--- a/src/ephy-history-window.h
+++ b/src/ephy-history-window.h
@@ -26,7 +26,6 @@
#include <gtk/gtk.h>
-#include "ephy-history.h"
#include "ephy-history-service.h"
G_BEGIN_DECLS