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

Unified Diff: services/service_manager/public/cpp/lib/service_info.cc

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/lib/service_info.cc
diff --git a/services/service_manager/public/cpp/lib/service_info.cc b/services/service_manager/public/cpp/lib/service_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7c47cff8bbaf828cc9a649bdd7b8fb71fccd49fb
--- /dev/null
+++ b/services/service_manager/public/cpp/lib/service_info.cc
@@ -0,0 +1,17 @@
+// 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.
+
+#include "services/service_manager/public/cpp/service_info.h"
+
+namespace service_manager {
+
+ServiceInfo::ServiceInfo() = default;
+ServiceInfo::ServiceInfo(const Identity& identity,
+ const InterfaceProviderSpecMap& specs)
+ : identity(identity),
+ interface_provider_specs(specs) {}
+ServiceInfo::ServiceInfo(const ServiceInfo& other) = default;
+ServiceInfo::~ServiceInfo() {}
+
+} // namespace service_manager
« no previous file with comments | « services/service_manager/public/cpp/lib/service_context.cc ('k') | services/service_manager/public/cpp/service_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698