| Index: services/resource_coordinator/coordination_unit/coordination_unit_factory.h
|
| diff --git a/services/resource_coordinator/coordination_unit/coordination_unit_factory.h b/services/resource_coordinator/coordination_unit/coordination_unit_factory.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..049f72d4c90892bc695e898b5a42d003a133b461
|
| --- /dev/null
|
| +++ b/services/resource_coordinator/coordination_unit/coordination_unit_factory.h
|
| @@ -0,0 +1,33 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FACTORY_H_
|
| +#define SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FACTORY_H_
|
| +
|
| +#include "services/resource_coordinator/coordination_unit/coordination_unit_impl.h"
|
| +#include "services/resource_coordinator/public/cpp/coordination_unit_id.h"
|
| +
|
| +namespace service_manager {
|
| +
|
| +class ServiceContextRefFactory;
|
| +
|
| +} // service_manager
|
| +
|
| +namespace resource_coordinator {
|
| +
|
| +class ServiceContextRefFactory;
|
| +
|
| +class CoordinationUnitFactory {
|
| + public:
|
| + static std::unique_ptr<CoordinationUnitImpl> CreateCoordinationUnit(
|
| + const CoordinationUnitID& id,
|
| + service_manager::ServiceContextRefFactory* service_ref_factory);
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(CoordinationUnitFactory);
|
| +};
|
| +
|
| +} // namespace resource_coordinator
|
| +
|
| +#endif // SERVICES_RESOURCE_COORDINATOR_COORDINATION_UNIT_COORDINATION_UNIT_FACTORY_H_
|
|
|