// 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) { … } void BarcodeDetectionProviderImpl::EnumerateSupportedFormats( EnumerateSupportedFormatsCallback callback) { … } } // namespace shape_detection