File: flash_resource.h

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (73 lines) | stat: -rw-r--r-- 2,468 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef PPAPI_PROXY_FLASH_RESOURCE_H_
#define PPAPI_PROXY_FLASH_RESOURCE_H_

#include <stdint.h>

#include "base/macros.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_var.h"
#include "ppapi/c/private/ppb_flash.h"
#include "ppapi/proxy/connection.h"
#include "ppapi/proxy/plugin_resource.h"
#include "ppapi/thunk/ppb_flash_functions_api.h"

namespace ppapi {
namespace proxy {

class PluginDispatcher;

class FlashResource
    : public PluginResource,
      public thunk::PPB_Flash_Functions_API {
 public:
  FlashResource(Connection connection,
                PP_Instance instance,
                PluginDispatcher* plugin_dispatcher);
  ~FlashResource() override;

  // Resource override.
  thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() override;

  // PPB_Flash_Functions_API implementation.
  PP_Var GetProxyForURL(PP_Instance instance, const std::string& url) override;
  void UpdateActivity(PP_Instance instance) override;
  PP_Bool SetCrashData(PP_Instance instance,
                       PP_FlashCrashKey key,
                       PP_Var value) override;
  double GetLocalTimeZoneOffset(PP_Instance instance, PP_Time t) override;
  PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting) override;
  void SetInstanceAlwaysOnTop(PP_Instance instance, PP_Bool on_top) override;
  PP_Bool DrawGlyphs(
      PP_Instance instance,
      PP_Resource pp_image_data,
      const PP_BrowserFont_Trusted_Description* font_desc,
      uint32_t color,
      const PP_Point* position,
      const PP_Rect* clip,
      const float transformation[3][3],
      PP_Bool allow_subpixel_aa,
      uint32_t glyph_count,
      const uint16_t glyph_indices[],
      const PP_Point glyph_advances[]) override;
  int32_t Navigate(PP_Instance instance,
                   PP_Resource request_info,
                   const char* target,
                   PP_Bool from_user_action) override;
  PP_Bool IsRectTopmost(PP_Instance instance, const PP_Rect* rect) override;
  void InvokePrinting(PP_Instance instance) override;

 private:
  // Non-owning pointer to the PluginDispatcher that owns this object.
  PluginDispatcher* plugin_dispatcher_;

  DISALLOW_COPY_AND_ASSIGN(FlashResource);
};

}  // namespace proxy
}  // namespace ppapi

#endif  // PPAPI_PROXY_FLASH_RESOURCE_H_