aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.h
diff options
context:
space:
mode:
authorGustavo Noronha Silva <gns@src.gnome.org>2009-03-05 07:59:35 +0800
committerGustavo Noronha Silva <gns@src.gnome.org>2009-03-05 07:59:35 +0800
commit42a654901e1cdc2abf20feff9eb1d7128246d6a1 (patch)
treefce1285f78c056de771bc4420ad040c8ec440720 /embed/downloader-view.h
parent8f403c6207687e3ecdec6a40bbe16e02a6815bc1 (diff)
downloadgsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar.gz
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar.bz2
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar.lz
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar.xz
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.tar.zst
gsoc2013-epiphany-42a654901e1cdc2abf20feff9eb1d7128246d6a1.zip
Basic download functionality for ephy/webkit. This update also removes
the EphyDownload wrapper, which should be no longer needed with the advent of WebKitDownload. http://bugzilla.gnome.org/show_bug.cgi?id=570735 svn path=/trunk/; revision=8848
Diffstat (limited to 'embed/downloader-view.h')
-rw-r--r--embed/downloader-view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/embed/downloader-view.h b/embed/downloader-view.h
index 52f5023df..82cb101f0 100644
--- a/embed/downloader-view.h
+++ b/embed/downloader-view.h
@@ -21,8 +21,8 @@
#define DOWNLOADER_VIEW_H
#include "ephy-dialog.h"
-#include "ephy-download.h"
+#include <webkit/webkit.h>
#include <glib-object.h>
#include <glib.h>
@@ -57,10 +57,10 @@ GType downloader_view_get_type (void);
DownloaderView *downloader_view_new (void);
void downloader_view_add_download (DownloaderView *dv,
- EphyDownload *download);
+ WebKitDownload *download);
void downloader_view_remove_download (DownloaderView *dv,
- EphyDownload *download);
+ WebKitDownload *download);
G_END_DECLS