blob: 7d51a36414b7d23aa3fecae4b387a00af5a27166 [file] [log] [blame]
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef USB_CAMERA_HAL_DEVICE_OPS_H_
#define USB_CAMERA_HAL_DEVICE_OPS_H_
#include <hardware/camera3.h>
namespace arc {
// Camera device operations handle shared by all devices. The operation of one
// device are called on the same mojo thread. The operations of two different
// devices are called on two different mojo threads.
extern camera3_device_ops_t g_camera_device_ops;
} // namespace arc
#endif // USB_CAMERA_HAL_DEVICE_OPS_H_