chromium/chrome/browser/preloading/prefetch/no_state_prefetch/no_state_prefetch_unit_test_utils.h

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

#ifndef CHROME_BROWSER_PRELOADING_PREFETCH_NO_STATE_PREFETCH_NO_STATE_PREFETCH_UNIT_TEST_UTILS_H_
#define CHROME_BROWSER_PRELOADING_PREFETCH_NO_STATE_PREFETCH_NO_STATE_PREFETCH_UNIT_TEST_UTILS_H_

#include <map>
#include <memory>

#include "base/memory/raw_ptr.h"
#include "components/no_state_prefetch/browser/no_state_prefetch_contents.h"
#include "components/no_state_prefetch/browser/no_state_prefetch_manager.h"
#include "content/public/browser/preloading_data.h"
#include "url/gurl.h"

namespace prerender {

class UnitTestNoStatePrefetchManager;

class FakeNoStatePrefetchContents : public NoStatePrefetchContents {};

class UnitTestNoStatePrefetchManager : public NoStatePrefetchManager {};

}  // namespace prerender

#endif  // CHROME_BROWSER_PRELOADING_PREFETCH_NO_STATE_PREFETCH_NO_STATE_PREFETCH_UNIT_TEST_UTILS_H_