OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_ |
| 6 #define SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_ |
| 7 |
| 8 #include <map> |
| 9 #include <string> |
| 10 |
| 11 #include "services/service_manager/public/cpp/identity.h" |
| 12 #include "services/service_manager/public/cpp/interface_provider_spec.h" |
| 13 |
| 14 namespace service_manager { |
| 15 |
| 16 class Identity; |
| 17 |
| 18 struct ServiceInfo { |
| 19 ServiceInfo(); |
| 20 ServiceInfo(const Identity& identity, const InterfaceProviderSpecMap& specs); |
| 21 ServiceInfo(const ServiceInfo& other); |
| 22 ~ServiceInfo(); |
| 23 |
| 24 Identity identity; |
| 25 InterfaceProviderSpecMap interface_provider_specs; |
| 26 }; |
| 27 |
| 28 } // namespace service_manager |
| 29 |
| 30 #endif // SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_ |
OLD | NEW |