Searched refs:WebKitDownload (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitDownloadPrivate.h23 #include "WebKitDownload.h"
29 WebKitDownload* webkitDownloadCreate(WebKit::DownloadProxy*);
30 WebKitDownload* webkitDownloadCreateForRequest(WebKit::DownloadProxy*, const WebCore::ResourceRequest&);
31 bool webkitDownloadIsCancelled(WebKitDownload*);
32 void webkitDownloadSetResponse(WebKitDownload*, WebKitURIResponse*);
33 void webkitDownloadSetWebView(WebKitDownload*, WebKitWebView*);
34 void webkitDownloadNotifyProgress(WebKitDownload*, guint64 bytesReceived);
35 void webkitDownloadFailed(WebKitDownload*, const WebCore::ResourceError&);
36 void webkitDownloadCancelled(WebKitDownload*);
37 void webkitDownloadFinished(WebKitDownload*);
[all...]
H A DWebKitDownload.h36 #define WEBKIT_DOWNLOAD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_TYPE_DOWNLOAD, WebKitDownload))
42 typedef struct _WebKitDownload WebKitDownload; typedef in typeref:struct:_WebKitDownload
55 gboolean (* decide_destination) (WebKitDownload *download,
68 webkit_download_get_request (WebKitDownload *download);
71 webkit_download_get_destination (WebKitDownload *download);
74 webkit_download_set_destination (WebKitDownload *download,
78 webkit_download_get_response (WebKitDownload *download);
81 webkit_download_cancel (WebKitDownload *download);
84 webkit_download_get_estimated_progress (WebKitDownload *download);
87 webkit_download_get_elapsed_time (WebKitDownload *downloa
[all...]
H A DWebKitDownload.cpp21 #include "WebKitDownload.h"
39 * SECTION: WebKitDownload
41 * @Title: WebKitDownload
43 * #WebKitDownload carries information about a download request and
91 WEBKIT_DEFINE_TYPE(WebKitDownload, webkit_download, G_TYPE_OBJECT)
95 WebKitDownload* download = WEBKIT_DOWNLOAD(object);
112 static gboolean webkitDownloadDecideDestination(WebKitDownload* download, const gchar* suggestedFilename)
138 * WebKitDownload:destination:
151 * WebKitDownload:response:
164 * WebKitDownload
[all...]
H A DWebKitWebContextPrivate.h38 WebKitDownload* webkitWebContextGetOrCreateDownload(WebKit::DownloadProxy*);
39 WebKitDownload* webkitWebContextStartDownload(WebKitWebContext*, const char* uri, WebKit::WebPageProxy*);
41 void webkitWebContextDownloadStarted(WebKitWebContext*, WebKitDownload*);
H A DWebKitDownloadClient.cpp37 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
43 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
53 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
59 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
67 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
73 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
84 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
91 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(toImpl(wkDownload));
H A DWebKitWebContext.h31 #include <webkit2/WebKitDownload.h>
156 WEBKIT_API WebKitDownload *
H A Dwebkit2.h40 #include <webkit2/WebKitDownload.h>
H A DWebKitWebContext.cpp202 * @download: the #WebKitDownload associated with this event
385 typedef HashMap<DownloadProxy*, GRefPtr<WebKitDownload> > DownloadsMap;
403 * Returns: (transfer full): a new #WebKitDownload representing the
406 WebKitDownload* webkit_web_context_download_uri(WebKitWebContext* context, const gchar* uri)
978 WebKitDownload* webkitWebContextGetOrCreateDownload(DownloadProxy* downloadProxy)
980 GRefPtr<WebKitDownload> download = downloadsMap().get(downloadProxy);
989 WebKitDownload* webkitWebContextStartDownload(WebKitWebContext* context, const char* uri, WebPageProxy* initiatingPage)
993 WebKitDownload* download = webkitDownloadCreateForRequest(downloadProxy, request);
1003 void webkitWebContextDownloadStarted(WebKitWebContext* context, WebKitDownload* download)
H A DWebKitWebView.h442 WEBKIT_API WebKitDownload *
H A DWebKitWebView.cpp495 GRefPtr<WebKitDownload> download = webkitWebContextGetOrCreateDownload(downloadProxy);
3081 * Returns: (transfer full): a new #WebKitDownload representing the
3084 WebKitDownload* webkit_web_view_download_uri(WebKitWebView* webView, const char* uri)
3089 WebKitDownload* download = webkitWebContextStartDownload(webView->priv->context, uri, getPage(webView));

Completed in 79 milliseconds