Chromium Code Reviews| 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 ServiceContextRefFactory; | |
| 14 } | |
| 15 | |
| 16 namespace resource_coordinator { | |
| 17 | |
| 18 struct CoordinationUnitID; | |
| 19 | |
| 20 namespace CoordinationUnitFactory { | |
|
oystein (OOO til 10th of July)
2017/05/18 21:24:32
Actually, my fault, this should be "coordination_u
| |
| 21 | |
| 22 std::unique_ptr<CoordinationUnitImpl> CreateCoordinationUnit( | |
| 23 const CoordinationUnitID& id, | |
| 24 service_manager::ServiceContextRefFactory* service_ref_factory); | |
| 25 | |
| 26 } // namespace CoordinationUnitFactory | |
| 27 | |
| 28 } // namespace resource_coordinator | |
| 29 | |
| 30 #endif // SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FAC TORY_H_ | |
| OLD | NEW |