| 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_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/plugin_resource.h" | |
| 10 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" | 9 #include "ppapi/proxy/proxy_non_thread_safe_ref_count.h" |
| 11 | 10 |
| 12 struct PP_Flash_Menu; | 11 struct PP_Flash_Menu; |
| 13 struct PP_Point; | 12 struct PP_Point; |
| 14 struct PPB_Flash_Menu; | 13 struct PPB_Flash_Menu; |
| 15 | 14 |
| 15 namespace ppapi { |
| 16 class HostResource; |
| 17 } |
| 18 |
| 16 namespace pp { | 19 namespace pp { |
| 17 namespace proxy { | 20 namespace proxy { |
| 18 | 21 |
| 19 class SerializedFlashMenu; | 22 class SerializedFlashMenu; |
| 20 | 23 |
| 21 class PPB_Flash_Menu_Proxy : public InterfaceProxy { | 24 class PPB_Flash_Menu_Proxy : public InterfaceProxy { |
| 22 public: | 25 public: |
| 23 PPB_Flash_Menu_Proxy(Dispatcher* dispatcher, const void* target_interface); | 26 PPB_Flash_Menu_Proxy(Dispatcher* dispatcher, const void* target_interface); |
| 24 virtual ~PPB_Flash_Menu_Proxy(); | 27 virtual ~PPB_Flash_Menu_Proxy(); |
| 25 | 28 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 45 void SendShowACKToPlugin(int32_t result, ShowRequest* request); | 48 void SendShowACKToPlugin(int32_t result, ShowRequest* request); |
| 46 | 49 |
| 47 CompletionCallbackFactory<PPB_Flash_Menu_Proxy, | 50 CompletionCallbackFactory<PPB_Flash_Menu_Proxy, |
| 48 ProxyNonThreadSafeRefCount> callback_factory_; | 51 ProxyNonThreadSafeRefCount> callback_factory_; |
| 49 }; | 52 }; |
| 50 | 53 |
| 51 } // namespace proxy | 54 } // namespace proxy |
| 52 } // namespace pp | 55 } // namespace pp |
| 53 | 56 |
| 54 #endif // PPAPI_PPB_FLASH_MENU_PROXY_H_ | 57 #endif // PPAPI_PPB_FLASH_MENU_PROXY_H_ |
| OLD | NEW |