chromium/third_party/blink/renderer/platform/testing/empty_web_media_player.cc

// Copyright 2017 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/platform/testing/empty_web_media_player.h"

#include "media/base/video_frame.h"
#include "third_party/blink/public/platform/web_time_range.h"

namespace blink {

WebMediaPlayer::LoadTiming EmptyWebMediaPlayer::Load(
    LoadType,
    const WebMediaPlayerSource&,
    CorsMode,
    bool is_cache_disabled) {}

WebTimeRanges EmptyWebMediaPlayer::Buffered() const {}

WebTimeRanges EmptyWebMediaPlayer::Seekable() const {}

gfx::Size EmptyWebMediaPlayer::NaturalSize() const {}

gfx::Size EmptyWebMediaPlayer::VisibleSize() const {}

WebString EmptyWebMediaPlayer::GetErrorMessage() const {}

scoped_refptr<media::VideoFrame>
EmptyWebMediaPlayer::GetCurrentFrameThenUpdate() {}

std::optional<media::VideoFrame::ID> EmptyWebMediaPlayer::CurrentFrameId()
    const {}

}  // namespace blink