#include "third_party/blink/renderer/core/dom/frame_request_callback_collection.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/inspector/inspector_trace_events.h"
#include "third_party/blink/renderer/core/probe/core_probes.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
FrameRequestCallbackCollection::FrameRequestCallbackCollection(
ExecutionContext* context)
: … { … }
FrameRequestCallbackCollection::CallbackId
FrameRequestCallbackCollection::RegisterFrameCallback(FrameCallback* callback) { … }
void FrameRequestCallbackCollection::CancelFrameCallback(CallbackId id) { … }
void FrameRequestCallbackCollection::ExecuteFrameCallbacks(
double high_res_now_ms,
double high_res_now_ms_legacy) { … }
void FrameRequestCallbackCollection::Trace(Visitor* visitor) const { … }
V8FrameCallback::V8FrameCallback(V8FrameRequestCallback* callback)
: … { … }
void V8FrameCallback::Trace(blink::Visitor* visitor) const { … }
void V8FrameCallback::Invoke(double highResTime) { … }
}