chromium/third_party/blink/renderer/core/dom/frame_request_callback_collection.cc

// Copyright 2015 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/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) {}

}  // namespace blink