#include "components/password_manager/core/common/credential_manager_types.h"
#include <memory>
#include "base/strings/string_number_conversions.h"
namespace password_manager {
std::string CredentialTypeToString(CredentialType value) { … }
std::ostream& operator<<(std::ostream& os, CredentialType value) { … }
CredentialInfo::CredentialInfo() = default;
CredentialInfo::CredentialInfo(CredentialType type,
std::optional<std::u16string> id,
std::optional<std::u16string> name,
GURL icon,
std::optional<std::u16string> password,
url::SchemeHostPort federation)
: … { … }
CredentialInfo::CredentialInfo(const CredentialInfo& other) = default;
CredentialInfo::~CredentialInfo() = default;
bool CredentialInfo::operator==(const CredentialInfo& rhs) const { … }
}