- add sources.
[platform/framework/web/crosswalk.git] / src / ppapi / thunk / ppb_platform_verification_private_thunk.cc
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 Fri Oct 18 15:02:09 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/ppb_instance_api.h"
14 #include "ppapi/thunk/ppb_platform_verification_api.h"
15 #include "ppapi/thunk/resource_creation_api.h"
16 #include "ppapi/thunk/thunk.h"
17
18 namespace ppapi {
19 namespace thunk {
20
21 namespace {
22
23 PP_Resource Create(PP_Instance instance) {
24   VLOG(4) << "PPB_PlatformVerification_Private::Create()";
25   EnterResourceCreation enter(instance);
26   if (enter.failed())
27     return 0;
28   return enter.functions()->CreatePlatformVerificationPrivate(instance);
29 }
30
31 PP_Bool IsPlatformVerification(PP_Resource resource) {
32   VLOG(4) << "PPB_PlatformVerification_Private::IsPlatformVerification()";
33   EnterResource<PPB_PlatformVerification_API> enter(resource, false);
34   return PP_FromBool(enter.succeeded());
35 }
36
37 int32_t ChallengePlatform(PP_Resource instance,
38                           struct PP_Var service_id,
39                           struct PP_Var challenge,
40                           struct PP_Var* signed_data,
41                           struct PP_Var* signed_data_signature,
42                           struct PP_Var* platform_key_certificate,
43                           struct PP_CompletionCallback callback) {
44   VLOG(4) << "PPB_PlatformVerification_Private::ChallengePlatform()";
45   EnterResource<PPB_PlatformVerification_API> enter(instance, callback, true);
46   if (enter.failed())
47     return enter.retval();
48   return enter.SetResult(enter.object()->ChallengePlatform(
49       service_id,
50       challenge,
51       signed_data,
52       signed_data_signature,
53       platform_key_certificate,
54       enter.callback()));
55 }
56
57 const PPB_PlatformVerification_Private_0_2
58     g_ppb_platformverification_private_thunk_0_2 = {
59   &Create,
60   &IsPlatformVerification,
61   &ChallengePlatform
62 };
63
64 }  // namespace
65
66 const PPB_PlatformVerification_Private_0_2*
67     GetPPB_PlatformVerification_Private_0_2_Thunk() {
68   return &g_ppb_platformverification_private_thunk_0_2;
69 }
70
71 }  // namespace thunk
72 }  // namespace ppapi