~ubuntu-branches/ubuntu/trusty/gnome-documents/trusty-proposed

« back to all changes in this revision

Viewing changes to src/lib/gd-pdf-loader.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-07-19 14:23:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120719142333-0gr0rqv0yu7vp8ny
Tags: 0.5.4-0ubuntu1
* New upstream release (LP: #1026423)
* debian/control:
  - Bump build-depends on libclutter-gtk-1.0-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <glib-object.h>
26
26
#include <gio/gio.h>
27
 
#include <evince-document.h>
 
27
#include <evince-view.h>
28
28
#include <gdata/gdata.h>
29
29
#include <zpj/zpj.h>
30
30
 
34
34
                                   GCancellable *cancellable,
35
35
                                   GAsyncReadyCallback callback,
36
36
                                   gpointer user_data);
37
 
EvDocument *gd_pdf_loader_load_uri_finish (GAsyncResult *res,
38
 
                                           GError **error);
 
37
EvDocumentModel *gd_pdf_loader_load_uri_finish (GAsyncResult *res,
 
38
                                                GError **error);
39
39
 
40
40
void gd_pdf_loader_load_gdata_entry_async (GDataEntry *entry,
41
41
                                           GDataDocumentsService *service,
42
42
                                           GCancellable *cancellable,
43
43
                                           GAsyncReadyCallback callback,
44
44
                                           gpointer user_data);
45
 
EvDocument *gd_pdf_loader_load_gdata_entry_finish (GAsyncResult *res,
46
 
                                                   GError **error);
 
45
EvDocumentModel *gd_pdf_loader_load_gdata_entry_finish (GAsyncResult *res,
 
46
                                                        GError **error);
47
47
 
48
48
void gd_pdf_loader_load_zpj_entry_async (ZpjSkydriveEntry *entry,
49
49
                                         ZpjSkydrive *service,
50
50
                                         GCancellable *cancellable,
51
51
                                         GAsyncReadyCallback callback,
52
52
                                         gpointer user_data);
53
 
EvDocument *gd_pdf_loader_load_zpj_entry_finish (GAsyncResult *res,
54
 
                                                 GError **error);
 
53
EvDocumentModel *gd_pdf_loader_load_zpj_entry_finish (GAsyncResult *res,
 
54
                                                      GError **error);
55
55
 
56
56
G_END_DECLS
57
57