// 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. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_NOOP_URL_LOADER_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_NOOP_URL_LOADER_H_ #include "base/task/single_thread_task_runner.h" #include "third_party/blink/renderer/platform/loader/fetch/url_loader/url_loader.h" namespace blink { class NoopURLLoader final : public URLLoader { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_TESTING_NOOP_URL_LOADER_H_