Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(925)

Unified Diff: ppapi/thunk/ppb_camera_capabilities_private_thunk.cc

Issue 391323002: Pepper: add Image Capture interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..3ce123ae193c889d2a6b109939fb7b5b953f353a
--- /dev/null
+++ b/ppapi/thunk/ppb_camera_capabilities_private_thunk.cc
@@ -0,0 +1,59 @@
+// 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 Wed Aug 6 14:21:54 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());
+}
+
+struct PP_Size GetSupportedPreviewSizes[](PP_Resource capabilities,
+ int32_t* count) {
+ VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedPreviewSizes()";
+ EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true);
+ if (enter.failed())
+ return NULL;
+ return enter.object()->GetSupportedPreviewSizes(count);
+}
+
+struct PP_Size GetSupportedJPEGSizes[](PP_Resource capabilities,
+ int32_t* count) {
+ VLOG(4) << "PPB_CameraCapabilities_Private::GetSupportedJPEGSizes()";
+ EnterResource<PPB_CameraCapabilities_API> enter(capabilities, true);
+ if (enter.failed())
+ return NULL;
+ return enter.object()->GetSupportedJPEGSizes(count);
+}
+
+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

Powered by Google App Engine
This is Rietveld 408576698