chromium/third_party/blink/renderer/platform/loader/testing/fake_background_resource_fetch_assets.h

// 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.

#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_FAKE_BACKGROUND_RESOURCE_FETCH_ASSETS_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_FAKE_BACKGROUND_RESOURCE_FETCH_ASSETS_H_

#include "base/memory/scoped_refptr.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "third_party/blink/public/platform/web_background_resource_fetch_assets.h"

namespace base {
class SequencedTaskRunner;
}  // namespace base

namespace blink {

// This class can be used for testing the behaviour of a fetch request with a
// BackgroundURLLoader.
class FakeBackgroundResourceFetchAssets
    : public WebBackgroundResourceFetchAssets {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_TESTING_FAKE_BACKGROUND_RESOURCE_FETCH_ASSETS_H_