| 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/host_resource.h" | 15 #include "ppapi/proxy/host_resource.h" |
| 16 #include "ppapi/proxy/interface_proxy.h" | 16 #include "ppapi/proxy/interface_proxy.h" |
| 17 #include "ppapi/shared_impl/ppp_instance_combined.h" | 17 #include "ppapi/shared_impl/ppp_instance_combined.h" |
| 18 | 18 |
| 19 struct PP_InputEvent; | |
| 20 struct PP_Rect; | 19 struct PP_Rect; |
| 21 | 20 |
| 22 namespace pp { | 21 namespace pp { |
| 23 namespace proxy { | 22 namespace proxy { |
| 24 | 23 |
| 25 class SerializedVarReturnValue; | 24 class SerializedVarReturnValue; |
| 26 | 25 |
| 27 class PPP_Instance_Proxy : public InterfaceProxy { | 26 class PPP_Instance_Proxy : public InterfaceProxy { |
| 28 public: | 27 public: |
| 29 template <class PPP_Instance_Type> | 28 template <class PPP_Instance_Type> |
| 30 PPP_Instance_Proxy(Dispatcher* dispatcher, | 29 PPP_Instance_Proxy(Dispatcher* dispatcher, |
| 31 const PPP_Instance_Type* target_interface) | 30 const PPP_Instance_Type* target_interface) |
| 32 : InterfaceProxy(dispatcher, static_cast<const void*>(target_interface)), | 31 : InterfaceProxy(dispatcher, static_cast<const void*>(target_interface)), |
| 33 combined_interface_( | 32 combined_interface_( |
| 34 new ::ppapi::PPP_Instance_Combined(*target_interface)) { | 33 new ::ppapi::PPP_Instance_Combined(*target_interface)) { |
| 35 } | 34 } |
| 36 virtual ~PPP_Instance_Proxy(); | 35 virtual ~PPP_Instance_Proxy(); |
| 37 | 36 |
| 38 // Return the info for the 0.5 (latest, canonical) version of the interface. | 37 // Return the info for the 1.0 (latest, canonical) version of the interface. |
| 39 static const Info* GetInfo0_5(); | 38 static const Info* GetInfo1_0(); |
| 40 | 39 |
| 41 ::ppapi::PPP_Instance_Combined* ppp_instance_target() const { | 40 ::ppapi::PPP_Instance_Combined* ppp_instance_target() const { |
| 42 return combined_interface_.get(); | 41 return combined_interface_.get(); |
| 43 } | 42 } |
| 44 | 43 |
| 45 // InterfaceProxy implementation. | 44 // InterfaceProxy implementation. |
| 46 virtual bool OnMessageReceived(const IPC::Message& msg); | 45 virtual bool OnMessageReceived(const IPC::Message& msg); |
| 47 | 46 |
| 48 private: | 47 private: |
| 49 // Message handlers. | 48 // Message handlers. |
| 50 void OnMsgDidCreate(PP_Instance instance, | 49 void OnMsgDidCreate(PP_Instance instance, |
| 51 const std::vector<std::string>& argn, | 50 const std::vector<std::string>& argn, |
| 52 const std::vector<std::string>& argv, | 51 const std::vector<std::string>& argv, |
| 53 PP_Bool* result); | 52 PP_Bool* result); |
| 54 void OnMsgDidDestroy(PP_Instance instance); | 53 void OnMsgDidDestroy(PP_Instance instance); |
| 55 void OnMsgDidChangeView(PP_Instance instance, | 54 void OnMsgDidChangeView(PP_Instance instance, |
| 56 const PP_Rect& position, | 55 const PP_Rect& position, |
| 57 const PP_Rect& clip, | 56 const PP_Rect& clip, |
| 58 PP_Bool fullscreen); | 57 PP_Bool fullscreen); |
| 59 void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus); | 58 void OnMsgDidChangeFocus(PP_Instance instance, PP_Bool has_focus); |
| 60 void OnMsgHandleInputEvent(PP_Instance instance, | |
| 61 const PP_InputEvent& event, | |
| 62 PP_Bool* result); | |
| 63 void OnMsgHandleDocumentLoad(PP_Instance instance, | 59 void OnMsgHandleDocumentLoad(PP_Instance instance, |
| 64 const HostResource& url_loader, | 60 const HostResource& url_loader, |
| 65 PP_Bool* result); | 61 PP_Bool* result); |
| 66 scoped_ptr< ::ppapi::PPP_Instance_Combined> combined_interface_; | 62 scoped_ptr< ::ppapi::PPP_Instance_Combined> combined_interface_; |
| 67 }; | 63 }; |
| 68 | 64 |
| 69 } // namespace proxy | 65 } // namespace proxy |
| 70 } // namespace pp | 66 } // namespace pp |
| 71 | 67 |
| 72 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ | 68 #endif // PPAPI_PROXY_PPP_INSTANCE_PROXY_H_ |
| OLD | NEW |