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_PROXY_FLASH_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_FLASH_RESOURCE_H_ |
6 #define PPAPI_PROXY_FLASH_RESOURCE_H_ | 6 #define PPAPI_PROXY_FLASH_RESOURCE_H_ |
7 | 7 |
| 8 #include "ppapi/c/pp_instance.h" |
| 9 #include "ppapi/c/pp_var.h" |
| 10 #include "ppapi/c/private/ppb_flash.h" |
8 #include "ppapi/proxy/connection.h" | 11 #include "ppapi/proxy/connection.h" |
9 #include "ppapi/proxy/plugin_resource.h" | 12 #include "ppapi/proxy/plugin_resource.h" |
10 #include "ppapi/proxy/ppapi_proxy_export.h" | 13 #include "ppapi/proxy/ppapi_proxy_export.h" |
11 #include "ppapi/thunk/ppb_flash_functions_api.h" | 14 #include "ppapi/thunk/ppb_flash_functions_api.h" |
12 | 15 |
13 namespace ppapi { | 16 namespace ppapi { |
14 namespace proxy { | 17 namespace proxy { |
15 | 18 |
16 class PPAPI_PROXY_EXPORT FlashResource | 19 class PPAPI_PROXY_EXPORT FlashResource |
17 : public PluginResource, | 20 : public PluginResource, |
18 public NON_EXPORTED_BASE(thunk::PPB_Flash_Functions_API) { | 21 public NON_EXPORTED_BASE(thunk::PPB_Flash_Functions_API) { |
19 public: | 22 public: |
20 FlashResource(Connection connection, PP_Instance instance); | 23 FlashResource(Connection connection, PP_Instance instance); |
21 virtual ~FlashResource(); | 24 virtual ~FlashResource(); |
22 | 25 |
23 // Resource overrides. | 26 // Resource override. |
24 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE; | 27 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE; |
25 | 28 |
| 29 // PPB_Flash_Functions_API implementation. |
| 30 virtual PP_Var GetProxyForURL(PP_Instance instance, |
| 31 const std::string& url) OVERRIDE; |
| 32 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; |
| 33 virtual PP_Bool SetCrashData(PP_Instance instance, |
| 34 PP_FlashCrashKey key, |
| 35 PP_Var value) OVERRIDE; |
26 private: | 36 private: |
27 DISALLOW_COPY_AND_ASSIGN(FlashResource); | 37 DISALLOW_COPY_AND_ASSIGN(FlashResource); |
28 }; | 38 }; |
29 | 39 |
30 } // namespace proxy | 40 } // namespace proxy |
31 } // namespace ppapi | 41 } // namespace ppapi |
32 | 42 |
33 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ | 43 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ |
OLD | NEW |