forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarcode_detection_provider_mac.h
51 lines (39 loc) · 1.83 KB
/
barcode_detection_provider_mac.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2018 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.
#ifndef SERVICES_SHAPE_DETECTION_BARCODE_DETECTION_PROVIDER_MAC_H_
#define SERVICES_SHAPE_DETECTION_BARCODE_DETECTION_PROVIDER_MAC_H_
#include <memory>
#include <vector>
#include "base/macros.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "services/shape_detection/barcode_detection_impl_mac_vision_api.h"
#include "services/shape_detection/public/mojom/barcodedetection.mojom.h"
#include "services/shape_detection/public/mojom/barcodedetection_provider.mojom.h"
class VisionAPIInterface;
namespace shape_detection {
// The BarcodeDetectionProviderMac class is a provider that binds an
// implementation of mojom::BarcodeDetection with Core Image or Vision
// Framework.
class BarcodeDetectionProviderMac
: public shape_detection::mojom::BarcodeDetectionProvider {
public:
BarcodeDetectionProviderMac();
explicit BarcodeDetectionProviderMac(std::unique_ptr<VisionAPIInterface>);
~BarcodeDetectionProviderMac() override;
// Binds BarcodeDetection provider receiver to the implementation of
// mojom::BarcodeDetectionProvider.
static void Create(
mojo::PendingReceiver<mojom::BarcodeDetectionProvider> receiver);
void CreateBarcodeDetection(
mojo::PendingReceiver<mojom::BarcodeDetection> receiver,
mojom::BarcodeDetectorOptionsPtr options) override;
void EnumerateSupportedFormats(
EnumerateSupportedFormatsCallback callback) override;
private:
DISALLOW_COPY_AND_ASSIGN(BarcodeDetectionProviderMac);
base::Optional<std::vector<mojom::BarcodeFormat>> supported_formats_;
std::unique_ptr<VisionAPIInterface> vision_api_;
};
} // namespace shape_detection
#endif // SERVICES_SHAPE_DETECTION_BARCODE_DETECTION_PROVIDER_MAC_H_