summaryrefslogtreecommitdiffstats
path: root/mobile/android/actors/MediaControlDelegateChild.sys.mjs
blob: 1db32b33f057901fcc1d2a803c9fe3c1c042061f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

import { GeckoViewActorChild } from "resource://gre/modules/GeckoViewActorChild.sys.mjs";

const lazy = {};

ChromeUtils.defineESModuleGetters(lazy, {
  MediaUtils: "resource://gre/modules/MediaUtils.sys.mjs",
  setTimeout: "resource://gre/modules/Timer.sys.mjs",
});

export class MediaControlDelegateChild extends GeckoViewActorChild {
  handleEvent(aEvent) {
    debug`handleEvent: ${aEvent.type}`;

    switch (aEvent.type) {
      case "MozDOMFullscreen:Entered":
      case "MozDOMFullscreen:Exited":
        this.handleFullscreenChanged(true);
        break;
    }
  }

  async handleFullscreenChanged(retry) {
    debug`handleFullscreenChanged`;

    const element = this.document.fullscreenElement;
    const mediaElement = lazy.MediaUtils.findMediaElement(element);

    if (element && !mediaElement) {
      // Non-media element fullscreen.
      debug`No fullscreen media element found.`;
    }

    const activated = await this.eventDispatcher.sendRequestForResult({
      type: "GeckoView:MediaSession:Fullscreen",
      metadata: lazy.MediaUtils.getMetadata(mediaElement) ?? {},
      enabled: !!element,
    });
    if (activated) {
      return;
    }
    if (retry && element) {
      // When media session is going to active, we have a race condition of
      // full screen event because media session will be activated by full
      // screen event.
      // So we retry to call media session delegate for this situation.
      lazy.setTimeout(() => {
        this.handleFullscreenChanged(false);
      }, 100);
    }
  }
}

const { debug } = MediaControlDelegateChild.initLogging(
  "MediaControlDelegateChild"
);