OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* From ppb_url_request_info.idl modified Mon Aug 15 11:01:06 2011. */ | 6 /* From ppb_url_request_info.idl modified Wed Aug 24 20:53:00 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PPB_URL_REQUEST_INFO_H_ | 8 #ifndef PPAPI_C_PPB_URL_REQUEST_INFO_H_ |
9 #define PPAPI_C_PPB_URL_REQUEST_INFO_H_ | 9 #define PPAPI_C_PPB_URL_REQUEST_INFO_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
13 #include "ppapi/c/pp_macros.h" | 13 #include "ppapi/c/pp_macros.h" |
14 #include "ppapi/c/pp_resource.h" | 14 #include "ppapi/c/pp_resource.h" |
15 #include "ppapi/c/pp_stdint.h" | 15 #include "ppapi/c/pp_stdint.h" |
16 #include "ppapi/c/pp_time.h" | 16 #include "ppapi/c/pp_time.h" |
17 #include "ppapi/c/pp_var.h" | 17 #include "ppapi/c/pp_var.h" |
18 | 18 |
19 #define PPB_URLREQUESTINFO_INTERFACE_0_2 "PPB_URLRequestInfo;0.2" | |
20 #define PPB_URLREQUESTINFO_INTERFACE_1_0 "PPB_URLRequestInfo;1.0" | 19 #define PPB_URLREQUESTINFO_INTERFACE_1_0 "PPB_URLRequestInfo;1.0" |
21 #define PPB_URLREQUESTINFO_INTERFACE PPB_URLREQUESTINFO_INTERFACE_1_0 | 20 #define PPB_URLREQUESTINFO_INTERFACE PPB_URLREQUESTINFO_INTERFACE_1_0 |
22 | 21 |
23 /** | 22 /** |
24 * @file | 23 * @file |
25 * This file defines the <code>PPB_URLRequestInfo</code> API for creating and | 24 * This file defines the <code>PPB_URLRequestInfo</code> API for creating and |
26 * manipulating URL requests. | 25 * manipulating URL requests. |
27 */ | 26 */ |
28 | 27 |
29 | 28 |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 int64_t start_offset, | 246 int64_t start_offset, |
248 int64_t number_of_bytes, | 247 int64_t number_of_bytes, |
249 PP_Time expected_last_modified_time); | 248 PP_Time expected_last_modified_time); |
250 }; | 249 }; |
251 /** | 250 /** |
252 * @} | 251 * @} |
253 */ | 252 */ |
254 | 253 |
255 #endif /* PPAPI_C_PPB_URL_REQUEST_INFO_H_ */ | 254 #endif /* PPAPI_C_PPB_URL_REQUEST_INFO_H_ */ |
256 | 255 |
OLD | NEW |