| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_flash_drm.idl modified Sat Jun 8 16:45:26 2013. | 5 // From private/ppb_flash_drm.idl modified Mon Nov 11 14:49:53 2013. |
| 6 | 6 |
| 7 #include "ppapi/c/pp_completion_callback.h" | 7 #include "ppapi/c/pp_completion_callback.h" |
| 8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
| 9 #include "ppapi/c/private/ppb_flash_drm.h" | 9 #include "ppapi/c/private/ppb_flash_drm.h" |
| 10 #include "ppapi/shared_impl/tracked_callback.h" | 10 #include "ppapi/shared_impl/tracked_callback.h" |
| 11 #include "ppapi/thunk/enter.h" | 11 #include "ppapi/thunk/enter.h" |
| 12 #include "ppapi/thunk/ppb_flash_drm_api.h" | 12 #include "ppapi/thunk/ppb_flash_drm_api.h" |
| 13 #include "ppapi/thunk/ppb_instance_api.h" | 13 #include "ppapi/thunk/ppb_instance_api.h" |
| 14 #include "ppapi/thunk/resource_creation_api.h" | 14 #include "ppapi/thunk/resource_creation_api.h" |
| 15 #include "ppapi/thunk/thunk.h" | 15 #include "ppapi/thunk/thunk.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 PP_Resource* file_ref, | 49 PP_Resource* file_ref, |
| 50 struct PP_CompletionCallback callback) { | 50 struct PP_CompletionCallback callback) { |
| 51 VLOG(4) << "PPB_Flash_DRM::GetVoucherFile()"; | 51 VLOG(4) << "PPB_Flash_DRM::GetVoucherFile()"; |
| 52 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); | 52 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); |
| 53 if (enter.failed()) | 53 if (enter.failed()) |
| 54 return enter.retval(); | 54 return enter.retval(); |
| 55 return enter.SetResult(enter.object()->GetVoucherFile(file_ref, | 55 return enter.SetResult(enter.object()->GetVoucherFile(file_ref, |
| 56 enter.callback())); | 56 enter.callback())); |
| 57 } | 57 } |
| 58 | 58 |
| 59 int32_t MonitorIsExternal(PP_Resource drm, |
| 60 PP_Bool* is_external, |
| 61 struct PP_CompletionCallback callback) { |
| 62 VLOG(4) << "PPB_Flash_DRM::MonitorIsExternal()"; |
| 63 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); |
| 64 if (enter.failed()) |
| 65 return enter.retval(); |
| 66 return enter.SetResult(enter.object()->MonitorIsExternal(is_external, |
| 67 enter.callback())); |
| 68 } |
| 69 |
| 59 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = { | 70 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = { |
| 60 &Create, | 71 &Create, |
| 61 &GetDeviceID, | 72 &GetDeviceID, |
| 62 &GetHmonitor, | 73 &GetHmonitor, |
| 63 &GetVoucherFile | 74 &GetVoucherFile |
| 64 }; | 75 }; |
| 65 | 76 |
| 77 const PPB_Flash_DRM_1_1 g_ppb_flash_drm_thunk_1_1 = { |
| 78 &Create, |
| 79 &GetDeviceID, |
| 80 &GetHmonitor, |
| 81 &GetVoucherFile, |
| 82 &MonitorIsExternal |
| 83 }; |
| 84 |
| 66 } // namespace | 85 } // namespace |
| 67 | 86 |
| 68 const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() { | 87 const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() { |
| 69 return &g_ppb_flash_drm_thunk_1_0; | 88 return &g_ppb_flash_drm_thunk_1_0; |
| 70 } | 89 } |
| 71 | 90 |
| 91 const PPB_Flash_DRM_1_1* GetPPB_Flash_DRM_1_1_Thunk() { |
| 92 return &g_ppb_flash_drm_thunk_1_1; |
| 93 } |
| 94 |
| 72 } // namespace thunk | 95 } // namespace thunk |
| 73 } // namespace ppapi | 96 } // namespace ppapi |
| OLD | NEW |