| OLD | NEW |
| (Empty) | |
| 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 |
| 5 #include "services/shape_detection/face_detection_provider_impl.h" |
| 6 |
| 7 namespace shape_detection { |
| 8 |
| 9 void FaceDetectionProviderImpl::CreateFaceDetection( |
| 10 shape_detection::mojom::FaceDetectionRequest request, |
| 11 shape_detection::mojom::FaceDetectorOptionsPtr options) { |
| 12 DLOG(ERROR) << "Platform not supported for Face Detection Service."; |
| 13 } |
| 14 |
| 15 } // namespace shape_detection |
| OLD | NEW |