#include "third_party/blink/renderer/core/lcp_critical_path_predictor/lcp_script_observer.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/loader/lcp_critical_path_predictor_util.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
namespace blink {
LCPScriptObserver::~LCPScriptObserver() = default;
HashSet<String> LCPScriptObserver::GetExecutingScriptUrls() { … }
String LCPScriptObserver::GetScriptUrlFromCallFunctionProbe(
const probe::CallFunction* probe) { … }
LCPScriptObserver::LCPScriptObserver(LocalFrame* local_root)
: … { … }
void LCPScriptObserver::Will(const probe::ExecuteScript& probe) { … }
void LCPScriptObserver::Did(const probe::ExecuteScript& probe) { … }
void LCPScriptObserver::Will(const probe::CallFunction& probe) { … }
void LCPScriptObserver::Did(const probe::CallFunction& probe) { … }
void LCPScriptObserver::Trace(Visitor* visitor) const { … }
void LCPScriptObserver::Shutdown() { … }
}