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_response_info.idl modified Mon Aug 15 11:01:06 2011. */ | 6 /* From ppb_url_response_info.idl modified Wed Aug 24 20:53:17 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PPB_URL_RESPONSE_INFO_H_ | 8 #ifndef PPAPI_C_PPB_URL_RESPONSE_INFO_H_ |
9 #define PPAPI_C_PPB_URL_RESPONSE_INFO_H_ | 9 #define PPAPI_C_PPB_URL_RESPONSE_INFO_H_ |
10 | 10 |
11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
12 #include "ppapi/c/pp_macros.h" | 12 #include "ppapi/c/pp_macros.h" |
13 #include "ppapi/c/pp_resource.h" | 13 #include "ppapi/c/pp_resource.h" |
14 #include "ppapi/c/pp_stdint.h" | 14 #include "ppapi/c/pp_stdint.h" |
15 #include "ppapi/c/pp_var.h" | 15 #include "ppapi/c/pp_var.h" |
16 | 16 |
17 #define PPB_URLRESPONSEINFO_INTERFACE_0_1 "PPB_URLResponseInfo;0.1" | |
18 #define PPB_URLRESPONSEINFO_INTERFACE_1_0 "PPB_URLResponseInfo;1.0" | 17 #define PPB_URLRESPONSEINFO_INTERFACE_1_0 "PPB_URLResponseInfo;1.0" |
19 #define PPB_URLRESPONSEINFO_INTERFACE PPB_URLRESPONSEINFO_INTERFACE_1_0 | 18 #define PPB_URLRESPONSEINFO_INTERFACE PPB_URLRESPONSEINFO_INTERFACE_1_0 |
20 | 19 |
21 /** | 20 /** |
22 * @file | 21 * @file |
23 * This file defines the <code>PPB_URLResponseInfo</code> API for examining URL | 22 * This file defines the <code>PPB_URLResponseInfo</code> API for examining URL |
24 * responses. | 23 * responses. |
25 */ | 24 */ |
26 | 25 |
27 | 26 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 * not requested or if the <code>URLLoader</code> has not been opened yet. | 138 * not requested or if the <code>URLLoader</code> has not been opened yet. |
140 */ | 139 */ |
141 PP_Resource (*GetBodyAsFileRef)(PP_Resource response); | 140 PP_Resource (*GetBodyAsFileRef)(PP_Resource response); |
142 }; | 141 }; |
143 /** | 142 /** |
144 * @} | 143 * @} |
145 */ | 144 */ |
146 | 145 |
147 #endif /* PPAPI_C_PPB_URL_RESPONSE_INFO_H_ */ | 146 #endif /* PPAPI_C_PPB_URL_RESPONSE_INFO_H_ */ |
148 | 147 |
OLD | NEW |