#ifndef SERVICES_SERVICE_MANAGER_PUBLIC_CPP_BIND_SOURCE_INFO_H_
#define SERVICES_SERVICE_MANAGER_PUBLIC_CPP_BIND_SOURCE_INFO_H_
#include "services/service_manager/public/cpp/identity.h"
#include "services/service_manager/public/cpp/interface_provider_spec.h"
#include "services/service_manager/public/cpp/types_export.h"
namespace service_manager {
class Identity;
struct SERVICE_MANAGER_PUBLIC_CPP_TYPES_EXPORT BindSourceInfo {
BindSourceInfo();
BindSourceInfo(const Identity& identity,
const CapabilitySet& required_capabilities);
BindSourceInfo(const BindSourceInfo& other);
~BindSourceInfo();
Identity identity;
CapabilitySet required_capabilities;
};
using ConnectSourceInfo = BindSourceInfo;
}
#endif