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

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

Issue 2850743004: Replace ServiceInfo with BindSourceInfo. (Closed)
Patch Set: . Created 3 years, 8 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/bind_source_info.cc
diff --git a/services/service_manager/public/cpp/lib/bind_source_info.cc b/services/service_manager/public/cpp/lib/bind_source_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1cc8337c069b9c3fc9eb5e8d17d1bc826b82bea7
--- /dev/null
+++ b/services/service_manager/public/cpp/lib/bind_source_info.cc
@@ -0,0 +1,16 @@
+// Copyright 2017 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/bind_source_info.h"
+
+namespace service_manager {
+
+BindSourceInfo::BindSourceInfo() = default;
+BindSourceInfo::BindSourceInfo(const Identity& identity,
+ const CapabilitySet& required_capabilities)
+ : identity(identity), required_capabilities(required_capabilities) {}
+BindSourceInfo::BindSourceInfo(const BindSourceInfo& other) = default;
+BindSourceInfo::~BindSourceInfo() {}
+
+} // namespace service_manager

Powered by Google App Engine
This is Rietveld 408576698