Files
platform-external-webrtc/pc/test/fakevideotrackrenderer.h
Steve Anton 36b29d1df3 Enable cpplint in pc/
Enable cpplint check in the PRESUBMIT for pc/ and fix all existing
warnings.

Bug: webrtc:5583
Change-Id: If39994692ab6f6f3c83c74f23850f02fdfe810e8
Reviewed-on: https://webrtc-review.googlesource.com/16540
Commit-Queue: Steve Anton <steveanton@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20482}
2017-10-30 18:08:29 +00:00

34 lines
1.0 KiB
C++

/*
* Copyright 2012 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef PC_TEST_FAKEVIDEOTRACKRENDERER_H_
#define PC_TEST_FAKEVIDEOTRACKRENDERER_H_
#include "api/mediastreaminterface.h"
#include "media/base/fakevideorenderer.h"
namespace webrtc {
class FakeVideoTrackRenderer : public cricket::FakeVideoRenderer {
public:
explicit FakeVideoTrackRenderer(VideoTrackInterface* video_track)
: video_track_(video_track) {
video_track_->AddOrUpdateSink(this, rtc::VideoSinkWants());
}
~FakeVideoTrackRenderer() { video_track_->RemoveSink(this); }
private:
rtc::scoped_refptr<VideoTrackInterface> video_track_;
};
} // namespace webrtc
#endif // PC_TEST_FAKEVIDEOTRACKRENDERER_H_