Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Unified Diff: ppapi/api/ppb_url_loader.idl

Issue 14007010: Pepper: Autogenerate thunk for PPB_URL_Loader. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix sizeof statements Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/api/ppb_gamepad.idl ('k') | ppapi/api/trusted/ppb_url_loader_trusted.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/ppb_url_loader.idl
diff --git a/ppapi/api/ppb_url_loader.idl b/ppapi/api/ppb_url_loader.idl
index d6076bbaebb08dbffe0a73217bad2a3aa1a1a130..6e1a271d8e08a8e6e865d73fbfef97e2894cf5a3 100644
--- a/ppapi/api/ppb_url_loader.idl
+++ b/ppapi/api/ppb_url_loader.idl
@@ -8,6 +8,8 @@
* URLs.
*/
+[generate_thunk]
+
label Chrome {
M14 = 1.0
};
@@ -116,6 +118,7 @@ interface PPB_URLLoader {
* @return <code>PP_TRUE</code> if the upload progress is available,
* <code>PP_FALSE</code> if it is not available.
*/
+ [always_set_output_parameters]
PP_Bool GetUploadProgress(
[in] PP_Resource loader,
[out] int64_t bytes_sent,
@@ -140,6 +143,7 @@ interface PPB_URLLoader {
* @return <code>PP_TRUE</code> if the download progress is available,
* <code>PP_FALSE</code> if it is not available.
*/
+ [always_set_output_parameters]
PP_Bool GetDownloadProgress(
[in] PP_Resource loader,
[out] int64_t bytes_received,
« no previous file with comments | « ppapi/api/ppb_gamepad.idl ('k') | ppapi/api/trusted/ppb_url_loader_trusted.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698