chromium/content/public/test/prefetch_test_util.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 CONTENT_PUBLIC_TEST_PREFETCH_TEST_UTIL_H_
#define CONTENT_PUBLIC_TEST_PREFETCH_TEST_UTIL_H_

#include <memory>

#include "base/types/strong_alias.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "url/gurl.h"

namespace content::test {

PrefetchContainerIdForTesting;
static constexpr PrefetchContainerIdForTesting
    InvalidPrefetchContainerIdForTesting =;

class TestPrefetchWatcherImpl;

// A test helper to observe prefetch behaviors.
// TODO(crbug.com/40946257): There is a room to revisit the current test
// interface per upcoming changes and our needs of what properties we want to
// test. See discussion on crrev.com/c/5455871/comment/04ee743c_19b686db/.
class TestPrefetchWatcher {};

}  // namespace content::test

#endif  // CONTENT_PUBLIC_TEST_PREFETCH_TEST_UTIL_H_