| 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 #ifndef SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FACTOR
Y_H_ | |
| 6 #define SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FACTOR
Y_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 | |
| 10 #include "services/resource_coordinator/coordination_unit/coordination_unit_impl
.h" | |
| 11 | |
| 12 namespace service_manager { | |
| 13 class ServiceContextRef; | |
| 14 } | |
| 15 | |
| 16 namespace resource_coordinator { | |
| 17 | |
| 18 struct CoordinationUnitID; | |
| 19 | |
| 20 namespace coordination_unit_factory { | |
| 21 | |
| 22 std::unique_ptr<CoordinationUnitImpl> CreateCoordinationUnit( | |
| 23 const CoordinationUnitID& id, | |
| 24 std::unique_ptr<service_manager::ServiceContextRef> service_ref); | |
| 25 | |
| 26 } // namespace CoordinationUnitFactory | |
| 27 | |
| 28 } // namespace resource_coordinator | |
| 29 | |
| 30 #endif // SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FAC
TORY_H_ | |
| OLD | NEW |