chromium/components/commerce/core/commerce_info_cache.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace commerce