chromium/third_party/blink/renderer/modules/peerconnection/media_stream_video_webrtc_sink_test.cc

// Copyright 2016 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/modules/peerconnection/media_stream_video_webrtc_sink.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/platform/scheduler/test/renderer_scheduler_test_support.h"
#include "third_party/blink/renderer/modules/mediastream/mock_media_stream_registry.h"
#include "third_party/blink/renderer/modules/mediastream/video_track_adapter_settings.h"
#include "third_party/blink/renderer/modules/peerconnection/mock_peer_connection_dependency_factory.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/mediastream/media_stream_component.h"
#include "third_party/blink/renderer/platform/testing/io_task_runner_testing_platform_support.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "ui/gfx/geometry/size.h"

namespace blink {

AllOf;
Field;
Invoke;
Mock;
Optional;

class MockWebRtcVideoSink : public rtc::VideoSinkInterface<webrtc::VideoFrame> {};

class MockPeerConnectionDependencyFactory2
    : public MockPeerConnectionDependencyFactory {};

class MockVideoTrackSourceProxy : public MockWebRtcVideoTrackSource {};

class MediaStreamVideoWebRtcSinkTest : public ::testing::Test {};

TEST_F(MediaStreamVideoWebRtcSinkTest, NoiseReductionDefaultsToNotSet) {}

TEST_F(MediaStreamVideoWebRtcSinkTest, NotifiesFrameDropped) {}

TEST_F(MediaStreamVideoWebRtcSinkTest,
       ForwardsConstraintsChangeToWebRtcVideoTrackSourceProxy) {}

TEST_F(MediaStreamVideoWebRtcSinkTest, RequestsRefreshFrameFromSource) {}

}  // namespace blink