зеркало из https://github.com/mozilla/gecko-dev.git
119 строки
4.2 KiB
JavaScript
119 строки
4.2 KiB
JavaScript
/* vim: set ts=2 sw=2 sts=2 et tw=80: */
|
|
/* 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/. */
|
|
"use strict";
|
|
|
|
var EXPORTED_SYMBOLS = ["DOMFullscreenChild"];
|
|
|
|
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
class DOMFullscreenChild extends JSWindowActorChild {
|
|
receiveMessage(aMessage) {
|
|
let window = this.contentWindow;
|
|
let windowUtils = window && window.windowUtils;
|
|
|
|
if (!windowUtils) {
|
|
return;
|
|
}
|
|
|
|
switch (aMessage.name) {
|
|
case "DOMFullscreen:Entered": {
|
|
let remoteFrameBC = aMessage.data.remoteFrameBC;
|
|
if (remoteFrameBC) {
|
|
let remoteFrame = remoteFrameBC.embedderElement;
|
|
this._isNotTheRequestSource = true;
|
|
windowUtils.remoteFrameFullscreenChanged(remoteFrame);
|
|
} else {
|
|
this._lastTransactionId = windowUtils.lastTransactionId;
|
|
if (
|
|
!windowUtils.handleFullscreenRequests() &&
|
|
!this.document.fullscreenElement
|
|
) {
|
|
// If we don't actually have any pending fullscreen request
|
|
// to handle, neither we have been in fullscreen, tell the
|
|
// parent to just exit.
|
|
this.sendAsyncMessage("DOMFullscreen:Exit", {});
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case "DOMFullscreen:CleanUp": {
|
|
let remoteFrameBC = aMessage.data.remoteFrameBC;
|
|
if (remoteFrameBC) {
|
|
this._isNotTheRequestSource = true;
|
|
}
|
|
|
|
// If we've exited fullscreen at this point, no need to record
|
|
// transaction id or call exit fullscreen. This is especially
|
|
// important for pre-e10s, since in that case, it is possible
|
|
// that no more paint would be triggered after this point.
|
|
if (this.document.fullscreenElement) {
|
|
this._lastTransactionId = windowUtils.lastTransactionId;
|
|
windowUtils.exitFullscreen();
|
|
}
|
|
break;
|
|
}
|
|
case "DOMFullscreen:Painted": {
|
|
Services.obs.notifyObservers(this.contentWindow, "fullscreen-painted");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
handleEvent(aEvent) {
|
|
switch (aEvent.type) {
|
|
case "MozDOMFullscreen:Request": {
|
|
this.sendAsyncMessage("DOMFullscreen:Request", {});
|
|
break;
|
|
}
|
|
case "MozDOMFullscreen:NewOrigin": {
|
|
this.sendAsyncMessage("DOMFullscreen:NewOrigin", {
|
|
originNoSuffix: aEvent.target.nodePrincipal.originNoSuffix,
|
|
});
|
|
break;
|
|
}
|
|
case "MozDOMFullscreen:Exit": {
|
|
this.sendAsyncMessage("DOMFullscreen:Exit", {});
|
|
break;
|
|
}
|
|
case "MozDOMFullscreen:Entered":
|
|
case "MozDOMFullscreen:Exited": {
|
|
if (this._isNotTheRequestSource) {
|
|
// Fullscreen change event for a frame in the
|
|
// middle (content frame embedding the oop frame where the
|
|
// request comes from)
|
|
|
|
delete this._isNotTheRequestSource;
|
|
this.sendAsyncMessage(aEvent.type.replace("Moz", ""), {});
|
|
} else {
|
|
let rootWindow = this.contentWindow.windowRoot;
|
|
rootWindow.addEventListener("MozAfterPaint", this);
|
|
if (!this.document || !this.document.fullscreenElement) {
|
|
// If we receive any fullscreen change event, and find we are
|
|
// actually not in fullscreen, also ask the parent to exit to
|
|
// ensure that the parent always exits fullscreen when we do.
|
|
this.sendAsyncMessage("DOMFullscreen:Exit", {});
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case "MozAfterPaint": {
|
|
// Only send Painted signal after we actually finish painting
|
|
// the transition for the fullscreen change.
|
|
// Note that this._lastTransactionId is not set when in pre-e10s
|
|
// mode, so we need to check that explicitly.
|
|
if (
|
|
!this._lastTransactionId ||
|
|
aEvent.transactionId > this._lastTransactionId
|
|
) {
|
|
let rootWindow = this.contentWindow.windowRoot;
|
|
rootWindow.removeEventListener("MozAfterPaint", this);
|
|
this.sendAsyncMessage("DOMFullscreen:Painted", {});
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|