| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // From private/ppb_platform_verification_private.idl, | 5 // From private/ppb_platform_verification_private.idl modified Fri Nov 1 |
| 6 // modified Thu Oct 31 12:30:06 2013. | 6 // 16:12:12 2013. |
| 7 | 7 |
| 8 #include "ppapi/c/pp_completion_callback.h" | 8 #include "ppapi/c/pp_completion_callback.h" |
| 9 #include "ppapi/c/pp_errors.h" | 9 #include "ppapi/c/pp_errors.h" |
| 10 #include "ppapi/c/private/ppb_platform_verification_private.h" | 10 #include "ppapi/c/private/ppb_platform_verification_private.h" |
| 11 #include "ppapi/shared_impl/tracked_callback.h" | 11 #include "ppapi/shared_impl/tracked_callback.h" |
| 12 #include "ppapi/thunk/enter.h" | 12 #include "ppapi/thunk/enter.h" |
| 13 #include "ppapi/thunk/ppapi_thunk_export.h" | 13 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 14 #include "ppapi/thunk/ppb_platform_verification_api.h" | 14 #include "ppapi/thunk/ppb_platform_verification_api.h" |
| 15 | 15 |
| 16 namespace ppapi { | 16 namespace ppapi { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 36 struct PP_Var service_id, | 36 struct PP_Var service_id, |
| 37 struct PP_Var challenge, | 37 struct PP_Var challenge, |
| 38 struct PP_Var* signed_data, | 38 struct PP_Var* signed_data, |
| 39 struct PP_Var* signed_data_signature, | 39 struct PP_Var* signed_data_signature, |
| 40 struct PP_Var* platform_key_certificate, | 40 struct PP_Var* platform_key_certificate, |
| 41 struct PP_CompletionCallback callback) { | 41 struct PP_CompletionCallback callback) { |
| 42 VLOG(4) << "PPB_PlatformVerification_Private::ChallengePlatform()"; | 42 VLOG(4) << "PPB_PlatformVerification_Private::ChallengePlatform()"; |
| 43 EnterResource<PPB_PlatformVerification_API> enter(instance, callback, true); | 43 EnterResource<PPB_PlatformVerification_API> enter(instance, callback, true); |
| 44 if (enter.failed()) | 44 if (enter.failed()) |
| 45 return enter.retval(); | 45 return enter.retval(); |
| 46 return enter.SetResult(enter.object()->ChallengePlatform( | 46 return enter.SetResult( |
| 47 service_id, | 47 enter.object()->ChallengePlatform(service_id, |
| 48 challenge, | 48 challenge, |
| 49 signed_data, | 49 signed_data, |
| 50 signed_data_signature, | 50 signed_data_signature, |
| 51 platform_key_certificate, | 51 platform_key_certificate, |
| 52 enter.callback())); | 52 enter.callback())); |
| 53 } | 53 } |
| 54 | 54 |
| 55 const PPB_PlatformVerification_Private_0_2 | 55 const PPB_PlatformVerification_Private_0_2 |
| 56 g_ppb_platformverification_private_thunk_0_2 = { | 56 g_ppb_platformverification_private_thunk_0_2 = { // |
| 57 &Create, | 57 &Create, // |
| 58 &IsPlatformVerification, | 58 &IsPlatformVerification, // |
| 59 &ChallengePlatform | 59 &ChallengePlatform // |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace | 62 } // namespace |
| 63 | 63 |
| 64 PPAPI_THUNK_EXPORT const PPB_PlatformVerification_Private_0_2* | 64 PPAPI_THUNK_EXPORT const PPB_PlatformVerification_Private_0_2* |
| 65 GetPPB_PlatformVerification_Private_0_2_Thunk() { | 65 GetPPB_PlatformVerification_Private_0_2_Thunk() { |
| 66 return &g_ppb_platformverification_private_thunk_0_2; | 66 return &g_ppb_platformverification_private_thunk_0_2; |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace thunk | 69 } // namespace thunk |
| 70 } // namespace ppapi | 70 } // namespace ppapi |
| OLD | NEW |