blob: e8e3b318123e6ba42cb53288a9c45312645f9cce [file] [log] [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/shape_detection/barcode_detection_provider_impl.h"
#include "base/logging.h"
namespace shape_detection {
void BarcodeDetectionProviderImpl::CreateBarcodeDetection(
mojo::PendingReceiver<shape_detection::mojom::BarcodeDetection> receiver,
shape_detection::mojom::BarcodeDetectorOptionsPtr options) {
DLOG(ERROR) << "Platform not supported for Barcode Detection Service.";
}
void BarcodeDetectionProviderImpl::EnumerateSupportedFormats(
EnumerateSupportedFormatsCallback callback) {
DLOG(ERROR) << "Platform not supported for Barcode Detection Service.";
std::move(callback).Run({});
}
} // namespace shape_detection