blob: 1cc8337c069b9c3fc9eb5e8d17d1bc826b82bea7 [file] [log] [blame]
// 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