diff options
Diffstat (limited to 'browser/actors/PointerLockParent.sys.mjs')
-rw-r--r-- | browser/actors/PointerLockParent.sys.mjs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/browser/actors/PointerLockParent.sys.mjs b/browser/actors/PointerLockParent.sys.mjs new file mode 100644 index 0000000000..8d36b5cb57 --- /dev/null +++ b/browser/actors/PointerLockParent.sys.mjs @@ -0,0 +1,22 @@ +/* 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/. */ + +export class PointerLockParent extends JSWindowActorParent { + receiveMessage(message) { + let browser = this.manager.browsingContext.top.embedderElement; + switch (message.name) { + case "PointerLock:Entered": { + browser.ownerGlobal.PointerLock.entered( + this.manager.documentPrincipal.originNoSuffix + ); + break; + } + + case "PointerLock:Exited": { + browser.ownerGlobal.PointerLock.exited(); + break; + } + } + } +} |