| 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_PUBLIC_CPP_RESOURCE_COORDINATOR_INTERFACE_
H_ | |
| 6 #define SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_RESOURCE_COORDINATOR_INTERFACE_
H_ | |
| 7 | |
| 8 #include <stdint.h> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/weak_ptr.h" | |
| 12 #include "base/threading/thread_checker.h" | |
| 13 #include "services/resource_coordinator/public/interfaces/coordination_unit.mojo
m.h" | |
| 14 | |
| 15 namespace service_manager { | |
| 16 class Connector; | |
| 17 } | |
| 18 | |
| 19 namespace resource_coordinator { | |
| 20 | |
| 21 using EventType = mojom::EventType; | |
| 22 | |
| 23 class ResourceCoordinatorInterface { | |
| 24 public: | |
| 25 ResourceCoordinatorInterface(service_manager::Connector* connector, | |
| 26 const CoordinationUnitType& type); | |
| 27 ResourceCoordinatorInterface(service_manager::Connector* connector, | |
| 28 const CoordinationUnitType& type, | |
| 29 const std::string& id); | |
| 30 ~ResourceCoordinatorInterface(); | |
| 31 | |
| 32 const mojom::CoordinationUnitPtr& service() const { return service_; } | |
| 33 | |
| 34 void SendEvent(const mojom::EventType& event_type); | |
| 35 void AddChild(const ResourceCoordinatorInterface& child); | |
| 36 | |
| 37 private: | |
| 38 void ConnectToService(service_manager::Connector* connector, | |
| 39 const CoordinationUnitType& type, | |
| 40 const std::string& id); | |
| 41 void AddChildByID(const CoordinationUnitID& child_id); | |
| 42 | |
| 43 mojom::CoordinationUnitPtr service_; | |
| 44 | |
| 45 base::ThreadChecker thread_checker_; | |
| 46 | |
| 47 // The WeakPtrFactory should come last so the weak ptrs are invalidated | |
| 48 // before the rest of the member variables. | |
| 49 base::WeakPtrFactory<ResourceCoordinatorInterface> weak_ptr_factory_; | |
| 50 | |
| 51 DISALLOW_COPY_AND_ASSIGN(ResourceCoordinatorInterface); | |
| 52 }; | |
| 53 | |
| 54 } // namespace resource_coordinator | |
| 55 | |
| 56 #endif // SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_RESOURCE_COORDINATOR_INTERFA
CE_H_ | |
| OLD | NEW |