chromium/third_party/blink/renderer/core/timing/profiler.cc

// Copyright 2019 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/timing/profiler.h"

#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/core/dom/dom_exception.h"
#include "third_party/blink/renderer/core/event_target_names.h"
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/timing/dom_window_performance.h"
#include "third_party/blink/renderer/core/timing/profiler_group.h"
#include "third_party/blink/renderer/platform/bindings/script_forbidden_scope.h"

namespace blink {

Profiler* Profiler::Create(ScriptState* script_state,
                           const ProfilerInitOptions* options,
                           ExceptionState& exception_state) {}

void Profiler::Trace(Visitor* visitor) const {}

void Profiler::DisposeAsync() {}

const AtomicString& Profiler::InterfaceName() const {}

ExecutionContext* Profiler::GetExecutionContext() const {}

ScriptPromise<ProfilerTrace> Profiler::stop(ScriptState* script_state) {}

}  // namespace blink