| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "services/shape_detection/shape_detection_service.h" | 5 #include "services/shape_detection/shape_detection_service.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "services/service_manager/public/cpp/interface_registry.h" | 8 #include "services/service_manager/public/cpp/interface_registry.h" |
| 9 #include "services/service_manager/public/cpp/service_context.h" | 9 #include "services/service_manager/public/cpp/service_context.h" |
| 10 #include "services/shape_detection/barcode_detection_impl.h" | 10 #include "services/shape_detection/barcode_detection_impl.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // InterfaceRegistry's connection. | 41 // InterfaceRegistry's connection. |
| 42 std::unique_ptr<service_manager::ServiceContextRef> connection_ref = | 42 std::unique_ptr<service_manager::ServiceContextRef> connection_ref = |
| 43 ref_factory_->CreateRef(); | 43 ref_factory_->CreateRef(); |
| 44 registry->AddConnectionLostClosure( | 44 registry->AddConnectionLostClosure( |
| 45 base::Bind(&OnConnectionLost, base::Passed(&connection_ref))); | 45 base::Bind(&OnConnectionLost, base::Passed(&connection_ref))); |
| 46 registry->AddInterface(base::Bind(&BarcodeDetectionImpl::Create)); | 46 registry->AddInterface(base::Bind(&BarcodeDetectionImpl::Create)); |
| 47 registry->AddInterface(base::Bind(&FaceDetectionProviderImpl::Create)); | 47 registry->AddInterface(base::Bind(&FaceDetectionProviderImpl::Create)); |
| 48 return true; | 48 return true; |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool ShapeDetectionService::OnStop() { | |
| 52 return true; | |
| 53 } | |
| 54 | |
| 55 } // namespace shape_detection | 51 } // namespace shape_detection |
| OLD | NEW |