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
3 // found in the LICENSE file.
5 #ifndef PPAPI_PROXY_FLASH_RESOURCE_H_
6 #define PPAPI_PROXY_FLASH_RESOURCE_H_
8 #include "ppapi/c/pp_instance.h"
9 #include "ppapi/c/pp_var.h"
10 #include "ppapi/c/private/ppb_flash.h"
11 #include "ppapi/proxy/connection.h"
12 #include "ppapi/proxy/plugin_resource.h"
13 #include "ppapi/thunk/ppb_flash_functions_api.h"
18 class PluginDispatcher
;
21 : public PluginResource
,
22 public thunk::PPB_Flash_Functions_API
{
24 FlashResource(Connection connection
,
26 PluginDispatcher
* plugin_dispatcher
);
27 ~FlashResource() override
;
30 thunk::PPB_Flash_Functions_API
* AsPPB_Flash_Functions_API() override
;
32 // PPB_Flash_Functions_API implementation.
33 PP_Var
GetProxyForURL(PP_Instance instance
, const std::string
& url
) override
;
34 void UpdateActivity(PP_Instance instance
) override
;
35 PP_Bool
SetCrashData(PP_Instance instance
,
37 PP_Var value
) override
;
38 double GetLocalTimeZoneOffset(PP_Instance instance
, PP_Time t
) override
;
39 PP_Var
GetSetting(PP_Instance instance
, PP_FlashSetting setting
) override
;
40 void SetInstanceAlwaysOnTop(PP_Instance instance
, PP_Bool on_top
) override
;
43 PP_Resource pp_image_data
,
44 const PP_BrowserFont_Trusted_Description
* font_desc
,
46 const PP_Point
* position
,
48 const float transformation
[3][3],
49 PP_Bool allow_subpixel_aa
,
51 const uint16_t glyph_indices
[],
52 const PP_Point glyph_advances
[]) override
;
53 int32_t Navigate(PP_Instance instance
,
54 PP_Resource request_info
,
56 PP_Bool from_user_action
) override
;
57 PP_Bool
IsRectTopmost(PP_Instance instance
, const PP_Rect
* rect
) override
;
58 void InvokePrinting(PP_Instance instance
) override
;
61 // Non-owning pointer to the PluginDispatcher that owns this object.
62 PluginDispatcher
* plugin_dispatcher_
;
64 DISALLOW_COPY_AND_ASSIGN(FlashResource
);
70 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_