From 3e60272da61a6cb1b5de917ef956b12d99cd595b Mon Sep 17 00:00:00 2001 From: Harald Alvestrand Date: Mon, 20 Jun 2022 08:20:23 +0000 Subject: [PATCH] Delete channel_factory_interface.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This file should have been deleted when its build target went away. Bug: webrtc:13931 Change-Id: Ice007f771987fe085605413f89d36c6eb078a0c2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/266320 Reviewed-by: Henrik Boström Commit-Queue: Harald Alvestrand Cr-Commit-Position: refs/heads/main@{#37271} --- pc/channel_factory_interface.h | 55 ---------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 pc/channel_factory_interface.h diff --git a/pc/channel_factory_interface.h b/pc/channel_factory_interface.h deleted file mode 100644 index 6cae0baad9..0000000000 --- a/pc/channel_factory_interface.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright 2004 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_CHANNEL_FACTORY_INTERFACE_H_ -#define PC_CHANNEL_FACTORY_INTERFACE_H_ - -#include -#include - -#include "api/audio_options.h" -#include "api/crypto/crypto_options.h" -#include "api/video/video_bitrate_allocator_factory.h" -#include "call/call.h" -#include "media/base/media_channel.h" -#include "media/base/media_config.h" - -namespace cricket { - -class VideoChannel; -class VoiceChannel; - -class ChannelFactoryInterface { - public: - virtual std::unique_ptr CreateVideoChannel( - webrtc::Call* call, - const MediaConfig& media_config, - absl::string_view mid, - bool srtp_required, - const webrtc::CryptoOptions& crypto_options, - const VideoOptions& options, - webrtc::VideoBitrateAllocatorFactory* - video_bitrate_allocator_factory) = 0; - - virtual std::unique_ptr CreateVoiceChannel( - webrtc::Call* call, - const MediaConfig& media_config, - absl::string_view mid, - bool srtp_required, - const webrtc::CryptoOptions& crypto_options, - const AudioOptions& options) = 0; - - protected: - virtual ~ChannelFactoryInterface() = default; -}; - -} // namespace cricket - -#endif // PC_CHANNEL_FACTORY_INTERFACE_H_