#include "content/public/browser/private_aggregation_data_model.h"
#include <utility>
#include "base/check.h"
#include "url/origin.h"
namespace content {
PrivateAggregationDataModel::DataKey::DataKey(url::Origin reporting_origin)
: … { … }
PrivateAggregationDataModel::DataKey::DataKey(const DataKey&) = default;
PrivateAggregationDataModel::DataKey::DataKey(DataKey&&) = default;
PrivateAggregationDataModel::DataKey&
PrivateAggregationDataModel::DataKey::operator=(const DataKey&) = default;
PrivateAggregationDataModel::DataKey&
PrivateAggregationDataModel::DataKey::operator=(DataKey&&) = default;
PrivateAggregationDataModel::DataKey::~DataKey() = default;
bool PrivateAggregationDataModel::DataKey::operator<(
const PrivateAggregationDataModel::DataKey& other) const { … }
bool PrivateAggregationDataModel::DataKey::operator==(
const PrivateAggregationDataModel::DataKey& other) const { … }
}