text_detection_impl.cc 462 B

123456789101112131415
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "services/shape_detection/text_detection_impl.h"
  5. namespace shape_detection {
  6. // static
  7. void TextDetectionImpl::Create(
  8. mojo::PendingReceiver<mojom::TextDetection> receiver) {
  9. DLOG(ERROR) << "Platform not supported for Text Detection Service.";
  10. }
  11. } // namespace shape_detection