| Index: ppapi/thunk/ppb_camera_capabilities_private_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_camera_capabilities_private_thunk.cc b/ppapi/thunk/ppb_camera_capabilities_private_thunk.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f24a0e914887ad05cb03605a3879450fc3937264
|
| --- /dev/null
|
| +++ b/ppapi/thunk/ppb_camera_capabilities_private_thunk.cc
|
| @@ -0,0 +1,61 @@
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// From private/ppb_camera_capabilities_private.idl,
|
| +// modified Thu Aug 7 17:22:52 2014.
|
| +
|
| +#include "ppapi/c/pp_errors.h"
|
| +#include "ppapi/c/private/ppb_camera_capabilities_private.h"
|
| +#include "ppapi/shared_impl/tracked_callback.h"
|
| +#include "ppapi/thunk/enter.h"
|
| +#include "ppapi/thunk/ppapi_thunk_export.h"
|
| +#include "ppapi/thunk/ppb_camera_capabilities_api.h"
|
| +
|
| +namespace ppapi {
|
| +namespace thunk {
|
| +
|
| +namespace {
|
| +
|
| +PP_Bool IsCameraCapabilities(PP_Resource resource) {
|
| + VLOG(4) << "PPB_CameraCapabilities_Private::IsCameraCapabilities()";
|
| + EnterResource<PPB_CameraCapabilities_API> enter(resource, false);
|
| + return PP_FromBool(enter.succeeded());
|
| +}
|
| +
|
| +void GetSupportedPreviewSizes(PP_Resource capabilities,
|
| + int32_t* array_size,
|
| + struct PP_Size* preview_sizes[]) {
|
| + VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedPreviewSizes()";
|
| + EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true);
|
| + if (enter.failed())
|
| + return;
|
| + enter.object()->GetSupportedPreviewSizes(array_size, preview_sizes);
|
| +}
|
| +
|
| +void GetSupportedJpegSizes(PP_Resource capabilities,
|
| + int32_t* array_size,
|
| + struct PP_Size* jpeg_sizes[]) {
|
| + VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedJpegSizes()";
|
| + EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true);
|
| + if (enter.failed())
|
| + return;
|
| + enter.object()->GetSupportedJpegSizes(array_size, jpeg_sizes);
|
| +}
|
| +
|
| +const PPB_CameraCapabilities_Private_0_1
|
| + g_ppb_cameracapabilities_private_thunk_0_1 = {
|
| + &IsCameraCapabilities,
|
| + &GetSupportedPreviewSizes,
|
| + &GetSupportedJpegSizes
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +PPAPI_THUNK_EXPORT const PPB_CameraCapabilities_Private_0_1*
|
| + GetPPB_CameraCapabilities_Private_0_1_Thunk() {
|
| + return &g_ppb_cameracapabilities_private_thunk_0_1;
|
| +}
|
| +
|
| +} // namespace thunk
|
| +} // namespace ppapi
|
|
|