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

// 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.

#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() {}

}  // namespace blink