* Initiates desktop 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)
| 811 | * when the mirror command has been issued to the device. |
| 812 | */ |
| 813 | startDesktopMirroring(deviceName) { |
| 814 | return this.execute(new command.Command(Command.START_CAST_DESKTOP_MIRRORING).setParameter('sinkName', deviceName)) |
| 815 | } |
| 816 | |
| 817 | /** |
| 818 | * Initiates tab mirroring for the current browser tab on the specified device. |
nothing calls this directly
no test coverage detected