OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_FLASH_MENU_PROXY_H_ | 5 #ifndef PPAPI_PPB_FLASH_MENU_PROXY_H_ |
6 #define PPAPI_PPB_FLASH_MENU_PROXY_H_ | 6 #define PPAPI_PPB_FLASH_MENU_PROXY_H_ |
7 | 7 |
8 #include "ppapi/proxy/interface_proxy.h" | 8 #include "ppapi/proxy/interface_proxy.h" |
9 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" | 9 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" |
10 #include "ppapi/utility/completion_callback_factory.h" | 10 #include "ppapi/utility/completion_callback_factory.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 public: | 24 public: |
25 PPB_Flash_Menu_Proxy(Dispatcher* dispatcher); | 25 PPB_Flash_Menu_Proxy(Dispatcher* dispatcher); |
26 virtual ~PPB_Flash_Menu_Proxy(); | 26 virtual ~PPB_Flash_Menu_Proxy(); |
27 | 27 |
28 static PP_Resource CreateProxyResource(PP_Instance instance_id, | 28 static PP_Resource CreateProxyResource(PP_Instance instance_id, |
29 const PP_Flash_Menu* menu_data); | 29 const PP_Flash_Menu* menu_data); |
30 | 30 |
31 // InterfaceProxy implementation. | 31 // InterfaceProxy implementation. |
32 virtual bool OnMessageReceived(const IPC::Message& msg); | 32 virtual bool OnMessageReceived(const IPC::Message& msg); |
33 | 33 |
| 34 static const ApiID kApiID = API_ID_PPB_FLASH_MENU; |
| 35 |
34 private: | 36 private: |
35 struct ShowRequest; | 37 struct ShowRequest; |
36 | 38 |
37 void OnMsgCreate(PP_Instance instance_id, | 39 void OnMsgCreate(PP_Instance instance_id, |
38 const SerializedFlashMenu& menu_data, | 40 const SerializedFlashMenu& menu_data, |
39 ppapi::HostResource* resource); | 41 ppapi::HostResource* resource); |
40 void OnMsgShow(const ppapi::HostResource& menu, | 42 void OnMsgShow(const ppapi::HostResource& menu, |
41 const PP_Point& location); | 43 const PP_Point& location); |
42 void OnMsgShowACK(const ppapi::HostResource& menu, | 44 void OnMsgShowACK(const ppapi::HostResource& menu, |
43 int32_t selected_id, | 45 int32_t selected_id, |
44 int32_t result); | 46 int32_t result); |
45 void SendShowACKToPlugin(int32_t result, ShowRequest* request); | 47 void SendShowACKToPlugin(int32_t result, ShowRequest* request); |
46 | 48 |
47 pp::CompletionCallbackFactory<PPB_Flash_Menu_Proxy, | 49 pp::CompletionCallbackFactory<PPB_Flash_Menu_Proxy, |
48 ProxyNonThreadSafeRefCount> callback_factory_; | 50 ProxyNonThreadSafeRefCount> callback_factory_; |
49 }; | 51 }; |
50 | 52 |
51 } // namespace proxy | 53 } // namespace proxy |
52 } // namespace ppapi | 54 } // namespace ppapi |
53 | 55 |
54 #endif // PPAPI_PPB_FLASH_MENU_PROXY_H_ | 56 #endif // PPAPI_PPB_FLASH_MENU_PROXY_H_ |
OLD | NEW |