(video)
| 574 | |
| 575 | /** @param {!AmpElement|!VideoOrBaseElementDef} video */ |
| 576 | export function delegateAutoplay(video) { |
| 577 | whenUpgradedToCustomElement(devAssertElement(video)).then((el) => { |
| 578 | el.signals().signal(VideoServiceSignals_Enum.PLAYBACK_DELEGATED); |
| 579 | }); |
| 580 | } |
| 581 | |
| 582 | /** @param {!AmpElement|!VideoOrBaseElementDef} video */ |
| 583 | export function userInteractedWith(video) { |
nothing calls this directly
no test coverage detected