Roll src/third_party/WebKit 05e9c31:d6595eb (svn 198725:198727)
[chromium-blink-merge.git] / ppapi / proxy / flash_resource.h
blob21cdbb73bce4b96eff759e3c19d493deade2625a
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"
15 namespace ppapi {
16 namespace proxy {
18 class PluginDispatcher;
20 class FlashResource
21 : public PluginResource,
22 public thunk::PPB_Flash_Functions_API {
23 public:
24 FlashResource(Connection connection,
25 PP_Instance instance,
26 PluginDispatcher* plugin_dispatcher);
27 ~FlashResource() override;
29 // Resource 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,
36 PP_FlashCrashKey key,
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;
41 PP_Bool DrawGlyphs(
42 PP_Instance instance,
43 PP_Resource pp_image_data,
44 const PP_BrowserFont_Trusted_Description* font_desc,
45 uint32_t color,
46 const PP_Point* position,
47 const PP_Rect* clip,
48 const float transformation[3][3],
49 PP_Bool allow_subpixel_aa,
50 uint32_t glyph_count,
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,
55 const char* target,
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;
60 private:
61 // Non-owning pointer to the PluginDispatcher that owns this object.
62 PluginDispatcher* plugin_dispatcher_;
64 DISALLOW_COPY_AND_ASSIGN(FlashResource);
67 } // namespace proxy
68 } // namespace ppapi
70 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_