chromium/third_party/blink/renderer/core/lcp_critical_path_predictor/lcp_script_observer.h

// 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 THIRD_PARTY_BLINK_RENDERER_CORE_LCP_CRITICAL_PATH_PREDICTOR_LCP_SCRIPT_OBSERVER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LCP_CRITICAL_PATH_PREDICTOR_LCP_SCRIPT_OBSERVER_H_

#include <stdint.h>

#include "base/feature_list.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/core_probes_inl.h"

namespace blink {
class LocalFrame;

namespace probe {
class ExecuteScript;
}  // namespace probe

// A probe that keeps track of script execution to help determine LCP element
// dependencies.
class CORE_EXPORT LCPScriptObserver
    : public GarbageCollected<LCPScriptObserver> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LCP_CRITICAL_PATH_PREDICTOR_LCP_SCRIPT_OBSERVER_H_