| 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_device_id.idl modified Thu Dec 20 13:10:26 2012. | 5 // From private/ppb_flash_drm.idl modified Mon May 20 13:45:09 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_device_id.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_device_id_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" |
| 16 | 16 |
| 17 namespace ppapi { | 17 namespace ppapi { |
| 18 namespace thunk { | 18 namespace thunk { |
| 19 | 19 |
| 20 namespace { | 20 namespace { |
| 21 | 21 |
| 22 PP_Resource Create(PP_Instance instance) { | 22 PP_Resource Create(PP_Instance instance) { |
| 23 VLOG(4) << "PPB_Flash_DeviceID::Create()"; | 23 VLOG(4) << "PPB_Flash_DRM::Create()"; |
| 24 EnterResourceCreation enter(instance); | 24 EnterResourceCreation enter(instance); |
| 25 if (enter.failed()) | 25 if (enter.failed()) |
| 26 return 0; | 26 return 0; |
| 27 return enter.functions()->CreateFlashDeviceID(instance); | 27 return enter.functions()->CreateFlashDRM(instance); |
| 28 } | 28 } |
| 29 | 29 |
| 30 int32_t GetDeviceID(PP_Resource device_id, | 30 int32_t GetDeviceID(PP_Resource drm, |
| 31 struct PP_Var* id, | 31 struct PP_Var* id, |
| 32 struct PP_CompletionCallback callback) { | 32 struct PP_CompletionCallback callback) { |
| 33 VLOG(4) << "PPB_Flash_DeviceID::GetDeviceID()"; | 33 VLOG(4) << "PPB_Flash_DRM::GetDeviceID()"; |
| 34 EnterResource<PPB_Flash_DeviceID_API> enter(device_id, callback, true); | 34 EnterResource<PPB_Flash_DRM_API> enter(drm, callback, true); |
| 35 if (enter.failed()) | 35 if (enter.failed()) |
| 36 return enter.retval(); | 36 return enter.retval(); |
| 37 return enter.SetResult(enter.object()->GetDeviceID(id, enter.callback())); | 37 return enter.SetResult(enter.object()->GetDeviceID(id, enter.callback())); |
| 38 } | 38 } |
| 39 | 39 |
| 40 const PPB_Flash_DeviceID_1_0 g_ppb_flash_deviceid_thunk_1_0 = { | 40 const PPB_Flash_DRM_1_0 g_ppb_flash_drm_thunk_1_0 = { |
| 41 &Create, | 41 &Create, |
| 42 &GetDeviceID | 42 &GetDeviceID |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace | 45 } // namespace |
| 46 | 46 |
| 47 const PPB_Flash_DeviceID_1_0* GetPPB_Flash_DeviceID_1_0_Thunk() { | 47 const PPB_Flash_DRM_1_0* GetPPB_Flash_DRM_1_0_Thunk() { |
| 48 return &g_ppb_flash_deviceid_thunk_1_0; | 48 return &g_ppb_flash_drm_thunk_1_0; |
| 49 } | 49 } |
| 50 | 50 |
| 51 } // namespace thunk | 51 } // namespace thunk |
| 52 } // namespace ppapi | 52 } // namespace ppapi |
| OLD | NEW |