| 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_loader.idl modified Thu Aug 18 19:44:49 2011. */ | 6 /* From ppb_url_loader.idl modified Wed Aug 24 20:48:35 2011. */ |
| 7 | 7 |
| 8 #ifndef PPAPI_C_PPB_URL_LOADER_H_ | 8 #ifndef PPAPI_C_PPB_URL_LOADER_H_ |
| 9 #define PPAPI_C_PPB_URL_LOADER_H_ | 9 #define PPAPI_C_PPB_URL_LOADER_H_ |
| 10 | 10 |
| 11 #include "ppapi/c/pp_bool.h" | 11 #include "ppapi/c/pp_bool.h" |
| 12 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
| 13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
| 14 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
| 15 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
| 16 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
| 17 | 17 |
| 18 #define PPB_URLLOADER_INTERFACE_0_2 "PPB_URLLoader;0.2" | |
| 19 #define PPB_URLLOADER_INTERFACE_1_0 "PPB_URLLoader;1.0" | 18 #define PPB_URLLOADER_INTERFACE_1_0 "PPB_URLLoader;1.0" |
| 20 #define PPB_URLLOADER_INTERFACE PPB_URLLOADER_INTERFACE_1_0 | 19 #define PPB_URLLOADER_INTERFACE PPB_URLLOADER_INTERFACE_1_0 |
| 21 | 20 |
| 22 /** | 21 /** |
| 23 * @file | 22 * @file |
| 24 * This file defines the <strong>PPB_URLLoader</strong> interface for loading | 23 * This file defines the <strong>PPB_URLLoader</strong> interface for loading |
| 25 * URLs. | 24 * URLs. |
| 26 */ | 25 */ |
| 27 | 26 |
| 28 | 27 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 * <code>URLLoader</code>. | 215 * <code>URLLoader</code>. |
| 217 */ | 216 */ |
| 218 void (*Close)(PP_Resource loader); | 217 void (*Close)(PP_Resource loader); |
| 219 }; | 218 }; |
| 220 /** | 219 /** |
| 221 * @} | 220 * @} |
| 222 */ | 221 */ |
| 223 | 222 |
| 224 #endif /* PPAPI_C_PPB_URL_LOADER_H_ */ | 223 #endif /* PPAPI_C_PPB_URL_LOADER_H_ */ |
| 225 | 224 |
| OLD | NEW |