chromium/content/public/test/simple_url_loader_test_helper.h

// Copyright 2017 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_SIMPLE_URL_LOADER_TEST_HELPER_H_
#define CONTENT_PUBLIC_TEST_SIMPLE_URL_LOADER_TEST_HELPER_H_

#include <memory>
#include <optional>
#include <string>

#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "base/run_loop.h"
#include "services/network/public/cpp/simple_url_loader.h"

namespace content {

// Test utility class for waiting until a SimpleURLLoader has received a
// response body.
class SimpleURLLoaderTestHelper {};

}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_SIMPLE_URL_LOADER_TEST_HELPER_H_