| 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_PROXY_PPP_INSTANCE_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 6 #define PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
| 13 #include "ppapi/c/pp_resource.h" | 13 #include "ppapi/c/pp_resource.h" |
| 14 #include "ppapi/c/pp_var.h" | 14 #include "ppapi/c/pp_var.h" |
| 15 #include "ppapi/proxy/interface_proxy.h" | 15 #include "ppapi/proxy/interface_proxy.h" |
| 16 #include "ppapi/shared_impl/host_resource.h" | 16 #include "ppapi/shared_impl/host_resource.h" |
| 17 #include "ppapi/shared_impl/ppp_instance_combined.h" | 17 #include "ppapi/shared_impl/ppp_instance_combined.h" |
| 18 | 18 |
| 19 struct PP_Rect; | 19 struct PP_Rect; |
| 20 | 20 |
| 21 namespace ppapi { | 21 namespace ppapi { |
| 22 namespace proxy { | 22 namespace proxy { |
| 23 | 23 |
| 24 class SerializedVarReturnValue; | 24 class SerializedVarReturnValue; |
| 25 | 25 |
| 26 class PPP_Instance_Proxy : public InterfaceProxy { | 26 class PPP_Instance_Proxy : public InterfaceProxy { |
| 27 public: | 27 public: |
| 28 PPP_Instance_Proxy(Dispatcher* dispatcher); | 28 template <class PPP_Instance_Type> |
| 29 PPP_Instance_Proxy(Dispatcher* dispatcher, |
| 30 const PPP_Instance_Type* target_interface) |
| 31 : InterfaceProxy(dispatcher, static_cast<const void*>(target_interface)), |
| 32 combined_interface_(new PPP_Instance_Combined(*target_interface)) { |
| 33 } |
| 29 virtual ~PPP_Instance_Proxy(); | 34 virtual ~PPP_Instance_Proxy(); |
| 30 | 35 |
| 31 // Return the info for the 1.0 (latest, canonical) version of the interface. | 36 // Return the info for the 1.0 (latest, canonical) version of the interface. |
| 32 static const Info* GetInfo1_0(); | 37 static const Info* GetInfo1_0(); |
| 33 | 38 |
| 34 PPP_Instance_Combined* ppp_instance_target() const { | 39 PPP_Instance_Combined* ppp_instance_target() const { |
| 35 return combined_interface_.get(); | 40 return combined_interface_.get(); |
| 36 } | 41 } |
| 37 | 42 |
| 38 // InterfaceProxy implementation. | 43 // InterfaceProxy implementation. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 53 void OnMsgHandleDocumentLoad(PP_Instance instance, | 58 void OnMsgHandleDocumentLoad(PP_Instance instance, |
| 54 const HostResource& url_loader, | 59 const HostResource& url_loader, |
| 55 PP_Bool* result); | 60 PP_Bool* result); |
| 56 scoped_ptr<PPP_Instance_Combined> combined_interface_; | 61 scoped_ptr<PPP_Instance_Combined> combined_interface_; |
| 57 }; | 62 }; |
| 58 | 63 |
| 59 } // namespace proxy | 64 } // namespace proxy |
| 60 } // namespace ppapi | 65 } // namespace ppapi |
| 61 | 66 |
| 62 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 67 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
| OLD | NEW |