1 // Copyright 2013 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.
4
5 // From private/ppb_platform_verification_private.idl,
6 // modified Thu Oct 31 12:30:06 2013.
7
8 #include "ppapi/c/pp_completion_callback.h"
9 #include "ppapi/c/pp_errors.h"
10 #include "ppapi/c/private/ppb_platform_verification_private.h"
11 #include "ppapi/shared_impl/tracked_callback.h"
12 #include "ppapi/thunk/enter.h"
13 #include "ppapi/thunk/ppapi_thunk_export.h"
14 #include "ppapi/thunk/ppb_platform_verification_api.h"
15
16 namespace ppapi {
17 namespace thunk {
18
19 namespace {
20
Create(PP_Instance instance)21 PP_Resource Create(PP_Instance instance) {
22 VLOG(4) << "PPB_PlatformVerification_Private::Create()";
23 EnterResourceCreation enter(instance);
24 if (enter.failed())
25 return 0;
26 return enter.functions()->CreatePlatformVerificationPrivate(instance);
27 }
28
IsPlatformVerification(PP_Resource resource)29 PP_Bool IsPlatformVerification(PP_Resource resource) {
30 VLOG(4) << "PPB_PlatformVerification_Private::IsPlatformVerification()";
31 EnterResource<PPB_PlatformVerification_API> enter(resource, false);
32 return PP_FromBool(enter.succeeded());
33 }
34
ChallengePlatform(PP_Resource instance,struct PP_Var service_id,struct PP_Var challenge,struct PP_Var * signed_data,struct PP_Var * signed_data_signature,struct PP_Var * platform_key_certificate,struct PP_CompletionCallback callback)35 int32_t ChallengePlatform(PP_Resource instance,
36 struct PP_Var service_id,
37 struct PP_Var challenge,
38 struct PP_Var* signed_data,
39 struct PP_Var* signed_data_signature,
40 struct PP_Var* platform_key_certificate,
41 struct PP_CompletionCallback callback) {
42 VLOG(4) << "PPB_PlatformVerification_Private::ChallengePlatform()";
43 EnterResource<PPB_PlatformVerification_API> enter(instance, callback, true);
44 if (enter.failed())
45 return enter.retval();
46 return enter.SetResult(enter.object()->ChallengePlatform(
47 service_id,
48 challenge,
49 signed_data,
50 signed_data_signature,
51 platform_key_certificate,
52 enter.callback()));
53 }
54
55 const PPB_PlatformVerification_Private_0_2
56 g_ppb_platformverification_private_thunk_0_2 = {
57 &Create,
58 &IsPlatformVerification,
59 &ChallengePlatform
60 };
61
62 } // namespace
63
64 PPAPI_THUNK_EXPORT const PPB_PlatformVerification_Private_0_2*
GetPPB_PlatformVerification_Private_0_2_Thunk()65 GetPPB_PlatformVerification_Private_0_2_Thunk() {
66 return &g_ppb_platformverification_private_thunk_0_2;
67 }
68
69 } // namespace thunk
70 } // namespace ppapi
71