| 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" | 8 #include "ppapi/c/pp_instance.h" |
| 9 #include "ppapi/c/pp_var.h" | 9 #include "ppapi/c/pp_var.h" |
| 10 #include "ppapi/c/private/ppb_flash.h" | 10 #include "ppapi/c/private/ppb_flash.h" |
| 11 #include "ppapi/proxy/connection.h" | 11 #include "ppapi/proxy/connection.h" |
| 12 #include "ppapi/proxy/plugin_resource.h" | 12 #include "ppapi/proxy/plugin_resource.h" |
| 13 #include "ppapi/thunk/ppb_flash_functions_api.h" | 13 #include "ppapi/thunk/ppb_flash_functions_api.h" |
| 14 | 14 |
| 15 namespace ppapi { | 15 namespace ppapi { |
| 16 namespace proxy { | 16 namespace proxy { |
| 17 | 17 |
| 18 class PluginDispatcher; | 18 class PluginDispatcher; |
| 19 | 19 |
| 20 class FlashResource | 20 class FlashResource |
| 21 : public PluginResource, | 21 : public PluginResource, |
| 22 public thunk::PPB_Flash_Functions_API { | 22 public thunk::PPB_Flash_Functions_API { |
| 23 public: | 23 public: |
| 24 FlashResource(Connection connection, | 24 FlashResource(Connection connection, |
| 25 PP_Instance instance, | 25 PP_Instance instance, |
| 26 PluginDispatcher* plugin_dispatcher); | 26 PluginDispatcher* plugin_dispatcher); |
| 27 virtual ~FlashResource(); | 27 ~FlashResource() override; |
| 28 | 28 |
| 29 // Resource override. | 29 // Resource override. |
| 30 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() override; | 30 thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() override; |
| 31 | 31 |
| 32 // PPB_Flash_Functions_API implementation. | 32 // PPB_Flash_Functions_API implementation. |
| 33 virtual PP_Var GetProxyForURL(PP_Instance instance, | 33 PP_Var GetProxyForURL(PP_Instance instance, const std::string& url) override; |
| 34 const std::string& url) override; | 34 void UpdateActivity(PP_Instance instance) override; |
| 35 virtual void UpdateActivity(PP_Instance instance) override; | 35 PP_Bool SetCrashData(PP_Instance instance, |
| 36 virtual PP_Bool SetCrashData(PP_Instance instance, | 36 PP_FlashCrashKey key, |
| 37 PP_FlashCrashKey key, | 37 PP_Var value) override; |
| 38 PP_Var value) override; | 38 double GetLocalTimeZoneOffset(PP_Instance instance, PP_Time t) override; |
| 39 virtual double GetLocalTimeZoneOffset(PP_Instance instance, | 39 PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting) override; |
| 40 PP_Time t) override; | 40 void SetInstanceAlwaysOnTop(PP_Instance instance, PP_Bool on_top) override; |
| 41 virtual PP_Var GetSetting(PP_Instance instance, | 41 PP_Bool DrawGlyphs( |
| 42 PP_FlashSetting setting) override; | |
| 43 virtual void SetInstanceAlwaysOnTop(PP_Instance instance, | |
| 44 PP_Bool on_top) override; | |
| 45 virtual PP_Bool DrawGlyphs( | |
| 46 PP_Instance instance, | 42 PP_Instance instance, |
| 47 PP_Resource pp_image_data, | 43 PP_Resource pp_image_data, |
| 48 const PP_BrowserFont_Trusted_Description* font_desc, | 44 const PP_BrowserFont_Trusted_Description* font_desc, |
| 49 uint32_t color, | 45 uint32_t color, |
| 50 const PP_Point* position, | 46 const PP_Point* position, |
| 51 const PP_Rect* clip, | 47 const PP_Rect* clip, |
| 52 const float transformation[3][3], | 48 const float transformation[3][3], |
| 53 PP_Bool allow_subpixel_aa, | 49 PP_Bool allow_subpixel_aa, |
| 54 uint32_t glyph_count, | 50 uint32_t glyph_count, |
| 55 const uint16_t glyph_indices[], | 51 const uint16_t glyph_indices[], |
| 56 const PP_Point glyph_advances[]) override; | 52 const PP_Point glyph_advances[]) override; |
| 57 virtual int32_t Navigate(PP_Instance instance, | 53 int32_t Navigate(PP_Instance instance, |
| 58 PP_Resource request_info, | 54 PP_Resource request_info, |
| 59 const char* target, | 55 const char* target, |
| 60 PP_Bool from_user_action) override; | 56 PP_Bool from_user_action) override; |
| 61 virtual PP_Bool IsRectTopmost(PP_Instance instance, | 57 PP_Bool IsRectTopmost(PP_Instance instance, const PP_Rect* rect) override; |
| 62 const PP_Rect* rect) override; | 58 void InvokePrinting(PP_Instance instance) override; |
| 63 virtual void InvokePrinting(PP_Instance instance) override; | |
| 64 | 59 |
| 65 private: | 60 private: |
| 66 // Non-owning pointer to the PluginDispatcher that owns this object. | 61 // Non-owning pointer to the PluginDispatcher that owns this object. |
| 67 PluginDispatcher* plugin_dispatcher_; | 62 PluginDispatcher* plugin_dispatcher_; |
| 68 | 63 |
| 69 DISALLOW_COPY_AND_ASSIGN(FlashResource); | 64 DISALLOW_COPY_AND_ASSIGN(FlashResource); |
| 70 }; | 65 }; |
| 71 | 66 |
| 72 } // namespace proxy | 67 } // namespace proxy |
| 73 } // namespace ppapi | 68 } // namespace ppapi |
| 74 | 69 |
| 75 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ | 70 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ |
| OLD | NEW |