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 |