aboutsummaryrefslogtreecommitdiffstats
path: root/embed/mozilla/mozilla-history-item.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2008-04-04 05:09:48 +0800
committerChristian Persch <chpe@src.gnome.org>2008-04-04 05:09:48 +0800
commit39e984581c9ff4531e527456facf30f74574a64f (patch)
tree230720b87280b53b96058205a39f9d12b448e408 /embed/mozilla/mozilla-history-item.h
parent18325ac0850ff053477580b448fc6d1b7f21afa8 (diff)
downloadgsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar.gz
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar.bz2
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar.lz
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar.xz
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.tar.zst
gsoc2013-epiphany-39e984581c9ff4531e527456facf30f74574a64f.zip
Remove this too
svn path=/trunk/; revision=8184
Diffstat (limited to 'embed/mozilla/mozilla-history-item.h')
-rw-r--r--embed/mozilla/mozilla-history-item.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/embed/mozilla/mozilla-history-item.h b/embed/mozilla/mozilla-history-item.h
deleted file mode 100644
index 0e26f155e..000000000
--- a/embed/mozilla/mozilla-history-item.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef __MOZILLA_HISTORY_ITEM_H__
-#define __MOZILLA_HISTORY_ITEM_H__
-
-#include <glib.h>
-#include <glib-object.h>
-
-#include "mozilla-embed.h"
-
-G_BEGIN_DECLS
-
-#define MOZILLA_TYPE_HISTORY_ITEM (mozilla_history_item_get_type())
-#define MOZILLA_HISTORY_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MOZILLA_TYPE_HISTORY_ITEM, MozillaHistoryItem))
-#define MOZILLA_HISTORY_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOZILLA_TYPE_HISTORY_ITEM, MozillaHistoryItemClass))
-#define MOZILLA_IS_HISTORY_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MOZILLA_TYPE_HISTORY_ITEM))
-#define MOZILLA_IS_HISTORY_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOZILLA_TYPE_HISTORY_ITEM))
-#define MOZILLA_HISTORY_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOZILLA_TYPE_HISTORY_ITEM, MozillaHistoryItemClass))
-
-typedef struct _MozillaHistoryItem MozillaHistoryItem;
-typedef struct _MozillaHistoryItemClass MozillaHistoryItemClass;
-
-struct _MozillaHistoryItemClass
-{
- GObjectClass parent_class;
-};
-
-struct _MozillaHistoryItem
-{
- GObject parent_instance;
-
- MozillaEmbed *embed;
- int nth;
-};
-
-GType mozilla_history_item_get_type (void) G_GNUC_CONST;
-MozillaHistoryItem *mozilla_history_item_new (MozillaEmbed *embed, int index) G_GNUC_MALLOC;
-
-G_END_DECLS
-
-#endif /* __MOZILLA_HISTORY_ITEM_H__ */