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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
// Copyright (c) 2011 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 WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
#define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
#include "base/basictypes.h"
#include "base/ref_counted.h"
#include "build/build_config.h"
#include "ppapi/c/pp_point.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/c/private/ppb_flash.h"
#include "webkit/plugins/ppapi/callbacks.h"
#include "webkit/plugins/ppapi/resource.h"
namespace webkit {
namespace ppapi {
class PPB_Flash_Impl {
public:
// Returns a pointer to the interface implementing PPB_Flash that is
// exposed to the plugin.
static const PPB_Flash* GetInterface();
static bool DrawGlyphs(PP_Resource pp_image_data,
const PP_FontDescription_Dev* font_desc,
uint32_t color,
PP_Point position,
PP_Rect clip,
const float transformation[3][3],
uint32_t glyph_count,
const uint16_t glyph_indices[],
const PP_Point glyph_advances[])
#if defined(OS_LINUX)
;
#else
{ return false; }
#endif
private:
DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl);
};
class PPB_Flash_NetConnector_Impl : public Resource {
public:
explicit PPB_Flash_NetConnector_Impl(PluginInstance* instance);
virtual ~PPB_Flash_NetConnector_Impl();
static const PPB_Flash_NetConnector* GetInterface();
// Resource override.
virtual PPB_Flash_NetConnector_Impl* AsPPB_Flash_NetConnector_Impl();
PluginInstance* instance() { return instance_; }
// PPB_Flash_NetConnector implementation.
int32_t ConnectTcp(const char* host,
uint16_t port,
PP_FileHandle* socket_out,
PP_Flash_NetAddress* local_addr_out,
PP_Flash_NetAddress* remote_addr_out,
PP_CompletionCallback callback);
int32_t ConnectTcpAddress(const PP_Flash_NetAddress* addr,
PP_FileHandle* socket_out,
PP_Flash_NetAddress* local_addr_out,
PP_Flash_NetAddress* remote_addr_out,
PP_CompletionCallback callback);
// Called to complete |ConnectTcp()| and |ConnectTcpAddress()|.
void CompleteConnectTcp(PP_FileHandle socket,
const PP_Flash_NetAddress& local_addr,
const PP_Flash_NetAddress& remote_addr);
private:
// Plugin instance this connector with which is associated.
PluginInstance* instance_;
// Any pending callback (for |ConnectTcp()| or |ConnectTcpAddress()|).
scoped_refptr<TrackedCompletionCallback> callback_;
// Output buffers to be filled in when the callback is completed successfully
// (|{local,remote}_addr_out| are optional and may be null).
PP_FileHandle* socket_out_;
PP_Flash_NetAddress* local_addr_out_;
PP_Flash_NetAddress* remote_addr_out_;
DISALLOW_COPY_AND_ASSIGN(PPB_Flash_NetConnector_Impl);
};
} // namespace ppapi
} // namespace webkit
#endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_
|