| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_camera_capabilities_private.idl modified Wed Nov 5 14:29:15 | 5 // From private/ppb_camera_capabilities_private.idl modified Tue Feb 3 19:54:34 |
| 6 // 2014. | 6 // 2015. |
| 7 | 7 |
| 8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
| 9 #include "ppapi/c/private/ppb_camera_capabilities_private.h" | 9 #include "ppapi/c/private/ppb_camera_capabilities_private.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/ppapi_thunk_export.h" | 12 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 13 #include "ppapi/thunk/ppb_camera_capabilities_api.h" | 13 #include "ppapi/thunk/ppb_camera_capabilities_api.h" |
| 14 | 14 |
| 15 namespace ppapi { | 15 namespace ppapi { |
| 16 namespace thunk { | 16 namespace thunk { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 PP_Resource Create(PP_Instance instance) { | |
| 21 VLOG(4) << "PPB_CameraCapabilities_Private::Create()"; | |
| 22 EnterResourceCreation enter(instance); | |
| 23 if (enter.failed()) | |
| 24 return 0; | |
| 25 return enter.functions()->CreateCameraCapabilitiesPrivate(instance); | |
| 26 } | |
| 27 | |
| 28 PP_Bool IsCameraCapabilities(PP_Resource resource) { | 20 PP_Bool IsCameraCapabilities(PP_Resource resource) { |
| 29 VLOG(4) << "PPB_CameraCapabilities_Private::IsCameraCapabilities()"; | 21 VLOG(4) << "PPB_CameraCapabilities_Private::IsCameraCapabilities()"; |
| 30 EnterResource<PPB_CameraCapabilities_API> enter(resource, false); | 22 EnterResource<PPB_CameraCapabilities_API> enter(resource, false); |
| 31 return PP_FromBool(enter.succeeded()); | 23 return PP_FromBool(enter.succeeded()); |
| 32 } | 24 } |
| 33 | 25 |
| 34 void GetSupportedPreviewSizes(PP_Resource capabilities, | 26 void GetSupportedPreviewSizes(PP_Resource capabilities, |
| 35 int32_t* array_size, | 27 int32_t* array_size, |
| 36 struct PP_Size** preview_sizes) { | 28 struct PP_Size** preview_sizes) { |
| 37 VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedPreviewSizes()"; | 29 VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedPreviewSizes()"; |
| 38 EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true); | 30 EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true); |
| 39 if (enter.failed()) | 31 if (enter.failed()) |
| 40 return; | 32 return; |
| 41 enter.object()->GetSupportedPreviewSizes(array_size, preview_sizes); | 33 enter.object()->GetSupportedPreviewSizes(array_size, preview_sizes); |
| 42 } | 34 } |
| 43 | 35 |
| 44 void GetSupportedJpegSizes(PP_Resource capabilities, | |
| 45 int32_t* array_size, | |
| 46 struct PP_Size** jpeg_sizes) { | |
| 47 VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedJpegSizes()"; | |
| 48 EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true); | |
| 49 if (enter.failed()) | |
| 50 return; | |
| 51 enter.object()->GetSupportedJpegSizes(array_size, jpeg_sizes); | |
| 52 } | |
| 53 | |
| 54 const PPB_CameraCapabilities_Private_0_1 | 36 const PPB_CameraCapabilities_Private_0_1 |
| 55 g_ppb_cameracapabilities_private_thunk_0_1 = {&Create, | 37 g_ppb_cameracapabilities_private_thunk_0_1 = {&IsCameraCapabilities, |
| 56 &IsCameraCapabilities, | 38 &GetSupportedPreviewSizes}; |
| 57 &GetSupportedPreviewSizes, | |
| 58 &GetSupportedJpegSizes}; | |
| 59 | 39 |
| 60 } // namespace | 40 } // namespace |
| 61 | 41 |
| 62 PPAPI_THUNK_EXPORT const PPB_CameraCapabilities_Private_0_1* | 42 PPAPI_THUNK_EXPORT const PPB_CameraCapabilities_Private_0_1* |
| 63 GetPPB_CameraCapabilities_Private_0_1_Thunk() { | 43 GetPPB_CameraCapabilities_Private_0_1_Thunk() { |
| 64 return &g_ppb_cameracapabilities_private_thunk_0_1; | 44 return &g_ppb_cameracapabilities_private_thunk_0_1; |
| 65 } | 45 } |
| 66 | 46 |
| 67 } // namespace thunk | 47 } // namespace thunk |
| 68 } // namespace ppapi | 48 } // namespace ppapi |
| OLD | NEW |