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 #ifndef PPAPI_PPB_URL_LOADER_PROXY_H_ | 5 #ifndef PPAPI_PPB_URL_LOADER_PROXY_H_ |
6 #define PPAPI_PPB_URL_LOADER_PROXY_H_ | 6 #define PPAPI_PPB_URL_LOADER_PROXY_H_ |
7 | 7 |
8 #include "ppapi/c/pp_completion_callback.h" | 8 #include "ppapi/c/pp_completion_callback.h" |
9 #include "ppapi/c/pp_instance.h" | 9 #include "ppapi/c/pp_instance.h" |
10 #include "ppapi/c/pp_module.h" | 10 #include "ppapi/c/pp_module.h" |
11 #include "ppapi/c/pp_resource.h" | 11 #include "ppapi/c/pp_resource.h" |
12 #include "ppapi/c/pp_size.h" | 12 #include "ppapi/c/pp_size.h" |
13 #include "ppapi/c/pp_var.h" | 13 #include "ppapi/c/pp_var.h" |
14 #include "ppapi/cpp/completion_callback.h" | |
15 #include "ppapi/proxy/interface_proxy.h" | 14 #include "ppapi/proxy/interface_proxy.h" |
16 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" | 15 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" |
17 #include "ppapi/shared_impl/host_resource.h" | 16 #include "ppapi/shared_impl/host_resource.h" |
| 17 #include "ppapi/utility/completion_callback_factory.h" |
18 | 18 |
19 struct PPB_URLLoader; | 19 struct PPB_URLLoader; |
20 struct PPB_URLLoaderTrusted; | 20 struct PPB_URLLoaderTrusted; |
21 | 21 |
22 namespace ppapi { | 22 namespace ppapi { |
23 | 23 |
24 struct PPB_URLRequestInfo_Data; | 24 struct PPB_URLRequestInfo_Data; |
25 | 25 |
26 namespace proxy { | 26 namespace proxy { |
27 | 27 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 // Valid only in the host, this lazily-initialized pointer indicates the | 93 // Valid only in the host, this lazily-initialized pointer indicates the |
94 // URLLoaderTrusted interface. | 94 // URLLoaderTrusted interface. |
95 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; | 95 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; |
96 }; | 96 }; |
97 | 97 |
98 } // namespace proxy | 98 } // namespace proxy |
99 } // namespace ppapi | 99 } // namespace ppapi |
100 | 100 |
101 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_ | 101 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_ |
OLD | NEW |