// 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 THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_PENDING_LINK_PRELOAD_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_PENDING_LINK_PRELOAD_H_ #include "base/task/single_thread_task_runner.h" #include "third_party/blink/renderer/core/loader/link_load_parameters.h" #include "third_party/blink/renderer/core/script/modulator.h" namespace blink { class Document; class LinkLoader; class Resource; // Represents a pending preload, prefetch or modulepreload link. Receives // callbacks when the loading finishes or errors. class PendingLinkPreload final : public SingleModuleClient { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_PENDING_LINK_PRELOAD_H_