#include "components/commerce/core/product_specifications/product_specifications_set.h"
#include "components/sync/protocol/product_comparison_specifics.pb.h"
namespace commerce {
ProductSpecificationsSet::ProductSpecificationsSet(
const std::string& uuid,
const int64_t creation_time_usec_since_epoch,
const int64_t update_time_usec_since_epoch,
const std::vector<GURL>& urls,
const std::string& name)
: … { … }
ProductSpecificationsSet::ProductSpecificationsSet(
const std::string& uuid,
const int64_t creation_time_usec_since_epoch,
const int64_t update_time_usec_since_epoch,
const std::vector<UrlInfo>& url_infos,
const std::string& name)
: … { … }
ProductSpecificationsSet::ProductSpecificationsSet(
const ProductSpecificationsSet&) = default;
ProductSpecificationsSet::~ProductSpecificationsSet() = default;
const std::vector<GURL> ProductSpecificationsSet::urls() const { … }
ProductSpecificationsSet ProductSpecificationsSet::FromProto(
const sync_pb::ProductComparisonSpecifics& specifics) { … }
sync_pb::ProductComparisonSpecifics ProductSpecificationsSet::ToProto() const { … }
}