// Copyright 2023 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_BROWSER_PRELOADING_PRERENDER_DEVTOOLS_PRERENDER_ATTEMPT_H_ #define CONTENT_BROWSER_PRELOADING_PRERENDER_DEVTOOLS_PRERENDER_ATTEMPT_H_ #include "content/browser/preloading/prerender/prerender_attributes.h" #include "content/browser/preloading/prerender/prerender_final_status.h" #include "content/browser/preloading/prerender/prerender_metrics.h" #include "content/common/content_export.h" namespace content { // Represents information shared to DevTools clients by CDP event // Preload.prerenderStatusUpdated. Counterpart of the frontend is // SDK.PreloadingModel.PrerenderAttemptInternal. // // All status updates will be shared as soon as they are made. class CONTENT_EXPORT DevToolsPrerenderAttempt { … }; } // namespace content #endif // CONTENT_BROWSER_PRELOADING_PRERENDER_DEVTOOLS_PRERENDER_ATTEMPT_H_