blob: 98a8f0cf7cb27cdca4753e07118481f6a846e3bd [file] [log] [blame]
// 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/internals_profiler.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "v8/include/v8-profiler.h"
namespace blink {
void InternalsProfiler::collectSample(ScriptState* script_state, Internals&) {
v8::CpuProfiler::CollectSample(script_state->GetIsolate());
}
} // namespace blink