Index: ppapi/c/ppb_url_request_info.h |
=================================================================== |
--- ppapi/c/ppb_url_request_info.h (revision 72639) |
+++ ppapi/c/ppb_url_request_info.h (working copy) |
@@ -14,6 +14,16 @@ |
struct PP_Var; |
+/** |
+ * @file |
+ * Defines the API ... |
+ */ |
+ |
+/** |
+ * |
+ * @addtogroup Enums |
+ * @{ |
+ */ |
typedef enum { |
PP_URLREQUESTPROPERTY_URL, // string |
PP_URLREQUESTPROPERTY_METHOD, // string |
@@ -33,10 +43,19 @@ |
// Boolean (default = PP_FALSE). |
PP_URLREQUESTPROPERTY_RECORDUPLOADPROGRESS |
} PP_URLRequestProperty; |
+/** |
+ * @} |
+ */ |
+ |
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_URLRequestProperty, 4); |
#define PPB_URLREQUESTINFO_INTERFACE "PPB_URLRequestInfo;0.2" |
+/** |
+ * |
+ * @addtogroup Interfaces |
+ * @{ |
+ */ |
struct PPB_URLRequestInfo { |
// Create a new URLRequestInfo object. Returns 0 if the module is invalid. |
PP_Resource (*Create)(PP_Instance instance); |
@@ -83,6 +102,9 @@ |
int64_t number_of_bytes, |
PP_Time expected_last_modified_time); |
}; |
+/** |
+ * @} |
+ */ |
#endif /* PPAPI_C_PPB_URL_REQUEST_INFO_H_ */ |