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/c/ppb_url_loader.h" |
| 15 #include "ppapi/c/trusted/ppb_url_loader_trusted.h" |
14 #include "ppapi/cpp/completion_callback.h" | 16 #include "ppapi/cpp/completion_callback.h" |
15 #include "ppapi/proxy/interface_proxy.h" | 17 #include "ppapi/proxy/interface_proxy.h" |
16 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" | 18 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" |
17 #include "ppapi/shared_impl/host_resource.h" | 19 #include "ppapi/shared_impl/host_resource.h" |
18 | 20 |
19 struct PPB_URLLoader; | |
20 struct PPB_URLLoaderTrusted; | |
21 | |
22 namespace ppapi { | 21 namespace ppapi { |
23 | 22 |
24 struct PPB_URLRequestInfo_Data; | 23 struct PPB_URLRequestInfo_Data; |
25 | 24 |
26 namespace proxy { | 25 namespace proxy { |
27 | 26 |
28 struct PPBURLLoader_UpdateProgress_Params; | 27 struct PPBURLLoader_UpdateProgress_Params; |
29 | 28 |
30 class PPB_URLLoader_Proxy : public InterfaceProxy { | 29 class PPB_URLLoader_Proxy : public InterfaceProxy { |
31 public: | 30 public: |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 91 |
93 // Valid only in the host, this lazily-initialized pointer indicates the | 92 // Valid only in the host, this lazily-initialized pointer indicates the |
94 // URLLoaderTrusted interface. | 93 // URLLoaderTrusted interface. |
95 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; | 94 const PPB_URLLoaderTrusted* host_urlloader_trusted_interface_; |
96 }; | 95 }; |
97 | 96 |
98 } // namespace proxy | 97 } // namespace proxy |
99 } // namespace ppapi | 98 } // namespace ppapi |
100 | 99 |
101 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_ | 100 #endif // PPAPI_PPB_URL_LOADER_PROXY_H_ |
OLD | NEW |