Home | History | Annotate | Download | only in webkit

Lines Matching refs:request

49  * provides access to these resources. When a request gets loaded initially,
50 * it is set to a provisional state. The application can request for the
51 * request that initiated the load by asking for the provisional data source
152 WebKitNetworkRequest* request = webkit_network_request_new("about:blank");
153 WebKitWebDataSource* datasource = webkit_web_data_source_new_with_request(request);
154 g_object_unref(request);
161 * @request: the #WebKitNetworkRequest to use to create this data source
171 WebKitWebDataSource* webkit_web_data_source_new_with_request(WebKitNetworkRequest* request)
173 ASSERT(request);
175 const gchar* uri = webkit_network_request_get_uri(request);
181 priv->initialRequest = request;
216 * Returns a reference to the original request that was used to load the web
217 * content. The #WebKitNetworkRequest returned by this method is the request
219 * for getting the "committed" request.
230 ResourceRequest request = priv->loader->originalRequest();
235 priv->initialRequest = kitNew(request);
245 * the request that was "committed", and hence, different from the request you
263 ResourceRequest request = priv->loader->request();
268 priv->networkRequest = kitNew(request);