#include "services/service_manager/public/cpp/identity.h"
#include <tuple>
#include "base/check.h"
#include "base/strings/stringprintf.h"
namespace service_manager {
Identity::Identity() = default;
Identity::Identity(const std::string& name,
const base::Token& instance_group,
const base::Token& instance_id,
const base::Token& globally_unique_id)
: … { … }
Identity::Identity(const Identity& other) = default;
Identity::~Identity() = default;
Identity& Identity::operator=(const Identity& other) = default;
bool Identity::operator<(const Identity& other) const { … }
bool Identity::operator==(const Identity& other) const { … }
bool Identity::IsValid() const { … }
std::string Identity::ToString() const { … }
}