summaryrefslogtreecommitdiffstats
path: root/remote/shared/js-window-actors/NavigationListenerParent.sys.mjs
blob: 334f9953d69240344ed923d4a344e661a2eb0b59 (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
/* 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/. */

const lazy = {};

ChromeUtils.defineESModuleGetters(lazy, {
  Log: "chrome://remote/content/shared/Log.sys.mjs",
  notifyLocationChanged:
    "chrome://remote/content/shared/NavigationManager.sys.mjs",
  notifyNavigationStarted:
    "chrome://remote/content/shared/NavigationManager.sys.mjs",
  notifyNavigationStopped:
    "chrome://remote/content/shared/NavigationManager.sys.mjs",
});

ChromeUtils.defineLazyGetter(lazy, "logger", () => lazy.Log.get());

export class NavigationListenerParent extends JSWindowActorParent {
  async receiveMessage(message) {
    try {
      switch (message.name) {
        case "NavigationListenerChild:locationChanged": {
          lazy.notifyLocationChanged({
            contextDetails: message.data.contextDetails,
            url: message.data.url,
          });
          break;
        }
        case "NavigationListenerChild:navigationStarted": {
          lazy.notifyNavigationStarted({
            contextDetails: message.data.contextDetails,
            url: message.data.url,
          });
          break;
        }
        case "NavigationListenerChild:navigationStopped": {
          lazy.notifyNavigationStopped({
            contextDetails: message.data.contextDetails,
            url: message.data.url,
          });
          break;
        }
        default:
          throw new Error("Unsupported message:" + message.name);
      }
    } catch (e) {
      if (e instanceof TypeError) {
        // Avoid error spam from errors due to unavailable browsing contexts.
        lazy.logger.trace(
          `Failed to handle a navigation listener message: ${e.message}`
        );
      } else {
        throw e;
      }
    }
  }
}