Adds methods to abstraction LargeContainer which are used by LargeVideo when updating video.

This commit is contained in:
damencho 2016-03-15 15:38:10 -05:00
parent 5837ef506c
commit 6955bb71f3
1 changed files with 16 additions and 0 deletions

View File

@ -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) {
}
}