blob: 6f4f326409aa872dc0154364a41fed3e34f2ca5e [file] [log] [blame]
/*
* Copyright 2018 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 CAMERA_HAL_ADAPTER_VENDOR_TAG_OPS_DELEGATE_H_
#define CAMERA_HAL_ADAPTER_VENDOR_TAG_OPS_DELEGATE_H_
#include <hardware/camera3.h>
#include "common/utils/cros_camera_mojo_utils.h"
#include "mojo/camera_common.mojom.h"
namespace cros {
class VendorTagOpsDelegate final
: public internal::MojoBinding<mojom::VendorTagOps> {
public:
VendorTagOpsDelegate(scoped_refptr<base::SingleThreadTaskRunner> task_runner,
vendor_tag_ops_t* ops);
~VendorTagOpsDelegate() = default;
private:
void GetTagCount(GetTagCountCallback callback);
void GetAllTags(GetAllTagsCallback callback);
void GetSectionName(uint32_t tag, GetSectionNameCallback callback);
void GetTagName(uint32_t tag, GetTagNameCallback callback);
void GetTagType(uint32_t tag, GetTagTypeCallback callback);
vendor_tag_ops_t* vendor_tag_ops_;
DISALLOW_IMPLICIT_CONSTRUCTORS(VendorTagOpsDelegate);
};
} // namespace cros
#endif // CAMERA_HAL_ADAPTER_VENDOR_TAG_OPS_DELEGATE_H_