chromium/third_party/blink/renderer/platform/loader/fetch/subresource_web_bundle_list.cc

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

#include "third_party/blink/renderer/platform/loader/fetch/subresource_web_bundle_list.h"

#include "third_party/blink/renderer/platform/loader/fetch/subresource_web_bundle.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"

namespace blink {

void SubresourceWebBundleList::Trace(Visitor* visitor) const {}

void SubresourceWebBundleList::Add(SubresourceWebBundle& bundle) {}

void SubresourceWebBundleList::Remove(SubresourceWebBundle& bundle) {}

SubresourceWebBundle* SubresourceWebBundleList::GetMatchingBundle(
    const KURL& url) const {}

SubresourceWebBundle*
SubresourceWebBundleList::FindSubresourceWebBundleWhichWillBeReleased(
    const KURL& bundle_url,
    network::mojom::CredentialsMode credentials_mode) const {}

}  // namespace blink