* Initiates tab mirroring for the current browser tab on the specified device. * * @param {String} deviceName name of the target device. * @return {!promise.Thenable } A promise that will be resolved * when the mirror command has been issued to the device.
(deviceName)
| 822 | * when the mirror command has been issued to the device. |
| 823 | */ |
| 824 | startCastTabMirroring(deviceName) { |
| 825 | return this.execute(new command.Command(Command.START_CAST_TAB_MIRRORING).setParameter('sinkName', deviceName)) |
| 826 | } |
| 827 | |
| 828 | /** |
| 829 | * Returns an error message when there is any issue in a Cast session. |
nothing calls this directly
no test coverage detected