aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-request-about.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2013-03-28 00:53:07 +0800
committerCarlos Garcia Campos <carlosgc@gnome.org>2013-06-05 00:20:22 +0800
commit9701366af8864044864c1f3016945bbeed51876c (patch)
tree46758d3ae9300323fc24bea20b4d500e6e2c5da7 /embed/ephy-request-about.h
parent1dce50da0d55e0814b444f1922d2e263ce9aeda4 (diff)
downloadgsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar.gz
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar.bz2
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar.lz
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar.xz
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.tar.zst
gsoc2013-epiphany-9701366af8864044864c1f3016945bbeed51876c.zip
Remove ephy-request-about
It's not used in WebKit2. https://bugzilla.gnome.org/show_bug.cgi?id=696728
Diffstat (limited to 'embed/ephy-request-about.h')
-rw-r--r--embed/ephy-request-about.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/embed/ephy-request-about.h b/embed/ephy-request-about.h
deleted file mode 100644
index f8e3e2343..000000000
--- a/embed/ephy-request-about.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/*
- * Copyright (C) 2011, Igalia S.L.
- */
-
-#ifndef EPHY_REQUEST_ABOUT_H
-#define EPHY_REQUEST_ABOUT_H 1
-
-#define LIBSOUP_USE_UNSTABLE_REQUEST_API
-#include <libsoup/soup-request.h>
-
-#define EPHY_TYPE_REQUEST_ABOUT (ephy_request_about_get_type ())
-#define EPHY_REQUEST_ABOUT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), EPHY_TYPE_REQUEST_ABOUT, EphyRequestAbout))
-#define EPHY_REQUEST_ABOUT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EPHY_TYPE_REQUEST_ABOUT, EphyRequestAboutClass))
-#define EPHY_IS_REQUEST_ABOUT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), EPHY_TYPE_REQUEST_ABOUT))
-#define EPHY_IS_REQUEST_ABOUT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EPHY_TYPE_REQUEST_ABOUT))
-#define EPHY_REQUEST_ABOUT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EPHY_TYPE_REQUEST_ABOUT, EphyRequestAboutClass))
-
-typedef struct _EphyRequestAboutPrivate EphyRequestAboutPrivate;
-
-typedef struct {
- SoupRequest parent;
-
- EphyRequestAboutPrivate *priv;
-} EphyRequestAbout;
-
-typedef struct {
- SoupRequestClass parent;
-
-} EphyRequestAboutClass;
-
-GType ephy_request_about_get_type (void);
-
-#endif /* EPHY_REQUEST_ABOUT_H */