#include "components/commerce/core/commerce_info_cache.h"
#include "components/commerce/core/commerce_types.h"
#include "url/gurl.h"
namespace commerce {
CommerceInfoCache::CacheEntry::CacheEntry() = default;
CommerceInfoCache::CacheEntry::~CacheEntry() = default;
CommerceInfoCache::CommerceInfoCache() = default;
CommerceInfoCache::~CommerceInfoCache() = default;
void CommerceInfoCache::AddRef(const GURL& url) { … }
void CommerceInfoCache::RemoveRef(const GURL& url) { … }
bool CommerceInfoCache::IsUrlReferenced(const GURL& url) { … }
CommerceInfoCache::CacheEntry* CommerceInfoCache::GetEntryForUrl(
const GURL& url) { … }
size_t CommerceInfoCache::GetUrlRefCount(const GURL& url) { … }
}