Delete unused header media/base/test/mock_mediachannel.h.

Bug: None
Change-Id: Ic5629d236aa684f46ec944aa09d50d450ea2d6ed
Reviewed-on: https://webrtc-review.googlesource.com/62862
Reviewed-by: Magnus Jedvert <magjed@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22525}
This commit is contained in:
Niels Möller 2018-03-19 14:07:55 +01:00 committed by Commit Bot
parent 96114428bd
commit 7531a761d3
2 changed files with 0 additions and 36 deletions

View File

@ -464,7 +464,6 @@ if (rtc_include_tests) {
"base/fakevideocapturer.cc",
"base/fakevideocapturer.h",
"base/fakevideorenderer.h",
"base/test/mock_mediachannel.h",
"base/testutils.cc",
"base/testutils.h",
"engine/fakewebrtccall.cc",

View File

@ -1,35 +0,0 @@
/*
* Copyright 2016 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 MEDIA_BASE_TEST_MOCK_MEDIACHANNEL_H_
#define MEDIA_BASE_TEST_MOCK_MEDIACHANNEL_H_
#include "media/base/fakemediaengine.h"
#include "test/gmock.h"
namespace webrtc {
class MockVideoMediaChannel : public cricket::FakeVideoMediaChannel {
public:
MockVideoMediaChannel()
: cricket::FakeVideoMediaChannel(nullptr, cricket::VideoOptions()) {}
MOCK_METHOD1(GetStats, bool(cricket::VideoMediaInfo*));
};
class MockVoiceMediaChannel : public cricket::FakeVoiceMediaChannel {
public:
MockVoiceMediaChannel()
: cricket::FakeVoiceMediaChannel(nullptr, cricket::AudioOptions()) {}
MOCK_METHOD1(GetStats, bool(cricket::VoiceMediaInfo*));
};
} // namespace webrtc
#endif // MEDIA_BASE_TEST_MOCK_MEDIACHANNEL_H_