From 6955bb71f3a923d14392e16add15824ec7d50fac Mon Sep 17 00:00:00 2001 From: damencho Date: Tue, 15 Mar 2016 15:38:10 -0500 Subject: [PATCH] Adds methods to abstraction LargeContainer which are used by LargeVideo when updating video. --- modules/UI/videolayout/LargeContainer.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/UI/videolayout/LargeContainer.js b/modules/UI/videolayout/LargeContainer.js index 319ccef62..cc80f3f42 100644 --- a/modules/UI/videolayout/LargeContainer.js +++ b/modules/UI/videolayout/LargeContainer.js @@ -38,4 +38,20 @@ export default class LargeContainer { */ onHoverOut (e) { } + + /** + * Update video stream. + * @param {JitsiTrack?} stream new stream + * @param {string} videoType video type + */ + setStream (stream, videoType) { + } + + /** + * Show or hide user avatar. + * @param {boolean} show + */ + showAvatar (show) { + } + }