Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Side by Side Diff: services/service_manager/public/cpp/service_info.h

Issue 2425563004: Support reading multiple InterfaceProviderSpecs from manifests (Closed)
Patch Set: . Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « services/service_manager/public/cpp/service_context.h ('k') | services/service_manager/public/cpp/service_info.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698