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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// 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.
#include "ppapi/cpp/private/flash_drm.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/private/ppb_flash_device_id.h"
#include "ppapi/c/private/ppb_flash_drm.h"
#include "ppapi/cpp/module_impl.h"
namespace pp {
namespace {
template <> const char* interface_name<PPB_Flash_DRM_1_0>() {
return PPB_FLASH_DRM_INTERFACE_1_0;
}
template <> const char* interface_name<PPB_Flash_DRM_1_1>() {
return PPB_FLASH_DRM_INTERFACE_1_1;
}
template <> const char* interface_name<PPB_Flash_DeviceID_1_0>() {
return PPB_FLASH_DEVICEID_INTERFACE_1_0;
}
} // namespace
namespace flash {
DRM::DRM() {
}
DRM::DRM(const InstanceHandle& instance) : Resource() {
if (has_interface<PPB_Flash_DRM_1_1>()) {
PassRefFromConstructor(get_interface<PPB_Flash_DRM_1_1>()->Create(
instance.pp_instance()));
} else if (has_interface<PPB_Flash_DRM_1_0>()) {
PassRefFromConstructor(get_interface<PPB_Flash_DRM_1_0>()->Create(
instance.pp_instance()));
} else if (has_interface<PPB_Flash_DeviceID_1_0>()) {
PassRefFromConstructor(get_interface<PPB_Flash_DeviceID_1_0>()->Create(
instance.pp_instance()));
}
}
int32_t DRM::GetDeviceID(const CompletionCallbackWithOutput<Var>& callback) {
if (has_interface<PPB_Flash_DRM_1_1>()) {
return get_interface<PPB_Flash_DRM_1_1>()->GetDeviceID(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
if (has_interface<PPB_Flash_DRM_1_0>()) {
return get_interface<PPB_Flash_DRM_1_0>()->GetDeviceID(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
if (has_interface<PPB_Flash_DeviceID_1_0>()) {
return get_interface<PPB_Flash_DeviceID_1_0>()->GetDeviceID(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
bool DRM::GetHmonitor(int64_t* hmonitor) {
if (has_interface<PPB_Flash_DRM_1_1>()) {
return PP_ToBool(get_interface<PPB_Flash_DRM_1_1>()->GetHmonitor(
pp_resource(),
hmonitor));
}
if (has_interface<PPB_Flash_DRM_1_0>()) {
return PP_ToBool(get_interface<PPB_Flash_DRM_1_0>()->GetHmonitor(
pp_resource(),
hmonitor));
}
return 0;
}
int32_t DRM::GetVoucherFile(
const CompletionCallbackWithOutput<FileRef>& callback) {
if (has_interface<PPB_Flash_DRM_1_1>()) {
return get_interface<PPB_Flash_DRM_1_1>()->GetVoucherFile(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
if (has_interface<PPB_Flash_DRM_1_0>()) {
return get_interface<PPB_Flash_DRM_1_0>()->GetVoucherFile(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
return PP_ERROR_NOINTERFACE;
}
int32_t DRM::MonitorIsExternal(
const CompletionCallbackWithOutput<PP_Bool>& callback) {
if (has_interface<PPB_Flash_DRM_1_1>()) {
return get_interface<PPB_Flash_DRM_1_1>()->MonitorIsExternal(
pp_resource(),
callback.output(),
callback.pp_completion_callback());
}
return PP_ERROR_NOINTERFACE;
}
} // namespace flash
} // namespace pp
|