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

Unified Diff: services/service_manager/public/cpp/service_info.h

Issue 2425563004: Support reading multiple InterfaceProviderSpecs from manifests (Closed)
Patch Set: . Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: services/service_manager/public/cpp/service_info.h
diff --git a/services/service_manager/public/cpp/service_info.h b/services/service_manager/public/cpp/service_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..eda0dc3e7c3aa5b57b1b073dc065b241093b995a
--- /dev/null
+++ b/services/service_manager/public/cpp/service_info.h
@@ -0,0 +1,30 @@
+// Copyright 2016 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_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_
+#define SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_
+
+#include <map>
+#include <string>
+
+#include "services/service_manager/public/cpp/identity.h"
+#include "services/service_manager/public/cpp/interface_provider_spec.h"
+
+namespace service_manager {
+
+class Identity;
+
+struct ServiceInfo {
+ ServiceInfo();
+ ServiceInfo(const Identity& identity, const InterfaceProviderSpecMap& specs);
+ ServiceInfo(const ServiceInfo& other);
+ ~ServiceInfo();
+
+ Identity identity;
+ InterfaceProviderSpecMap interface_provider_specs;
+};
+
+} // namespace service_manager
+
+#endif // SERVICES_SERVICE_MANAGER_PUBLIC_CPP_SERVICE_INFO_H_
« 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