aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-history-item.c
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2008-06-30 15:24:01 +0800
committerXan Lopez <xan@src.gnome.org>2008-06-30 15:24:01 +0800
commit930d8c836af03046b56e016182ab0bb7f28b9e72 (patch)
tree11ee09b02d94c68803b6e7fb1b279eac62ff1d78 /embed/ephy-history-item.c
parentd0ccaa5cfa129113f6359b1be98ef9cb0db3e8e4 (diff)
downloadgsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar.gz
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar.bz2
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar.lz
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar.xz
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.tar.zst
gsoc2013-epiphany-930d8c836af03046b56e016182ab0bb7f28b9e72.zip
embed: remove history item abstraction from embed.
Not needed anymore. svn path=/trunk/; revision=8314
Diffstat (limited to 'embed/ephy-history-item.c')
-rw-r--r--embed/ephy-history-item.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/embed/ephy-history-item.c b/embed/ephy-history-item.c
deleted file mode 100644
index f5089b294..000000000
--- a/embed/ephy-history-item.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; -*- */
-/*
- * Copyright © 2007 Xan Lopez
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, 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 General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- */
-
-#include "config.h"
-
-#include "ephy-history-item.h"
-
-GType
-ephy_history_item_get_type (void)
-{
- static GType type = 0;
-
- if (G_UNLIKELY (type == 0)) {
- const GTypeInfo our_info =
- {
- sizeof (EphyHistoryItemIface),
- NULL,
- NULL,
- };
-
- type = g_type_register_static (G_TYPE_INTERFACE,
- "EphyHistoryItem",
- &our_info, (GTypeFlags)0);
- }
-
- return type;
-}
-
-char*
-ephy_history_item_get_url (EphyHistoryItem *item)
-{
- EphyHistoryItemIface *iface = EPHY_HISTORY_ITEM_GET_IFACE (item);
- return iface->get_url (item);
-}
-
-char*
-ephy_history_item_get_title (EphyHistoryItem *item)
-{
- EphyHistoryItemIface *iface = EPHY_HISTORY_ITEM_GET_IFACE (item);
- return iface->get_title (item);
-}