2012-01-05 17:04:03 -08:00
|
|
|
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
|
|
|
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
2012-02-08 04:37:00 -08:00
|
|
|
/* 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/. */
|
2011-12-06 15:52:26 -08:00
|
|
|
|
2012-02-28 14:01:48 -08:00
|
|
|
Cu.import('resource://gre/modules/ContactService.jsm');
|
2012-06-04 16:12:24 -07:00
|
|
|
Cu.import('resource://gre/modules/SettingsChangeNotifier.jsm');
|
2012-09-19 08:23:33 -07:00
|
|
|
#ifdef MOZ_B2G_FM
|
|
|
|
Cu.import('resource://gre/modules/DOMFMRadioParent.jsm');
|
|
|
|
#endif
|
2012-06-22 00:39:07 -07:00
|
|
|
Cu.import('resource://gre/modules/AlarmService.jsm');
|
2012-07-20 08:41:30 -07:00
|
|
|
Cu.import('resource://gre/modules/ActivitiesService.jsm');
|
2012-08-19 12:00:19 -07:00
|
|
|
Cu.import('resource://gre/modules/PermissionPromptHelper.jsm');
|
|
|
|
Cu.import('resource://gre/modules/ObjectWrapper.jsm');
|
2012-08-29 14:41:35 -07:00
|
|
|
Cu.import('resource://gre/modules/accessibility/AccessFu.jsm');
|
|
|
|
Cu.import('resource://gre/modules/Payment.jsm');
|
2012-10-02 22:38:03 -07:00
|
|
|
Cu.import("resource://gre/modules/AppsUtils.jsm");
|
2012-10-03 13:27:46 -07:00
|
|
|
Cu.import('resource://gre/modules/UserAgentOverrides.jsm');
|
2012-11-07 03:53:24 -08:00
|
|
|
Cu.import('resource://gre/modules/Keyboard.jsm');
|
2012-10-04 14:19:05 -07:00
|
|
|
#ifdef MOZ_B2G_RIL
|
2012-10-04 09:42:41 -07:00
|
|
|
Cu.import('resource://gre/modules/NetworkStatsService.jsm');
|
2012-10-04 14:19:05 -07:00
|
|
|
#endif
|
2012-02-01 16:46:50 -08:00
|
|
|
|
2012-11-12 16:46:35 -08:00
|
|
|
// identity
|
|
|
|
Cu.import('resource://gre/modules/SignInToWebsite.jsm');
|
|
|
|
SignInToWebsiteController.init();
|
|
|
|
|
2012-05-04 11:02:05 -07:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(Services, 'env',
|
|
|
|
'@mozilla.org/process/environment;1',
|
|
|
|
'nsIEnvironment');
|
2012-02-01 16:46:50 -08:00
|
|
|
|
2012-05-04 11:02:05 -07:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(Services, 'ss',
|
|
|
|
'@mozilla.org/content/style-sheet-service;1',
|
|
|
|
'nsIStyleSheetService');
|
2012-02-17 13:37:53 -08:00
|
|
|
|
2012-11-06 17:45:54 -08:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, 'gSystemMessenger',
|
|
|
|
'@mozilla.org/system-message-internal;1',
|
|
|
|
'nsISystemMessagesInternal');
|
|
|
|
|
2012-04-11 10:05:35 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2012-05-04 11:02:05 -07:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(Services, 'audioManager',
|
|
|
|
'@mozilla.org/telephony/audiomanager;1',
|
|
|
|
'nsIAudioManager');
|
2012-04-11 10:05:35 -07:00
|
|
|
#else
|
2012-05-04 11:02:05 -07:00
|
|
|
Services.audioManager = {
|
|
|
|
'masterVolume': 0
|
|
|
|
};
|
2012-04-11 10:05:35 -07:00
|
|
|
#endif
|
2012-02-23 16:40:49 -08:00
|
|
|
|
2012-05-04 11:02:05 -07:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(Services, 'fm',
|
|
|
|
'@mozilla.org/focus-manager;1',
|
|
|
|
'nsIFocusManager');
|
2012-03-02 15:32:46 -08:00
|
|
|
|
2012-03-16 09:50:45 -07:00
|
|
|
XPCOMUtils.defineLazyGetter(this, 'DebuggerServer', function() {
|
|
|
|
Cu.import('resource://gre/modules/devtools/dbg-server.jsm');
|
|
|
|
return DebuggerServer;
|
|
|
|
});
|
|
|
|
|
2012-08-15 09:00:02 -07:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "ppmm", function() {
|
|
|
|
return Cc["@mozilla.org/parentprocessmessagemanager;1"]
|
2012-08-27 07:13:02 -07:00
|
|
|
.getService(Ci.nsIMessageListenerManager);
|
2012-08-15 09:00:02 -07:00
|
|
|
});
|
|
|
|
|
2012-10-04 10:29:43 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
|
|
|
XPCOMUtils.defineLazyGetter(this, "libcutils", function () {
|
|
|
|
Cu.import("resource://gre/modules/systemlibs.js");
|
|
|
|
return libcutils;
|
|
|
|
});
|
|
|
|
#endif
|
|
|
|
|
2012-07-12 19:28:19 -07:00
|
|
|
function getContentWindow() {
|
|
|
|
return shell.contentBrowser.contentWindow;
|
|
|
|
}
|
|
|
|
|
2011-12-06 15:52:26 -08:00
|
|
|
var shell = {
|
2012-07-18 14:40:24 -07:00
|
|
|
|
|
|
|
get CrashSubmit() {
|
|
|
|
delete this.CrashSubmit;
|
|
|
|
Cu.import("resource://gre/modules/CrashSubmit.jsm", this);
|
|
|
|
return this.CrashSubmit;
|
|
|
|
},
|
|
|
|
|
2012-11-26 15:29:20 -08:00
|
|
|
onlineForCrashReport: function shell_onlineForCrashReport() {
|
|
|
|
let wifiManager = navigator.mozWifiManager;
|
|
|
|
let onWifi = (wifiManager &&
|
|
|
|
(wifiManager.connection.status == 'connected'));
|
|
|
|
return !Services.io.offline && onWifi;
|
|
|
|
},
|
|
|
|
|
2012-10-29 17:27:09 -07:00
|
|
|
reportCrash: function shell_reportCrash(isChrome, aCrashID) {
|
2012-10-11 07:18:00 -07:00
|
|
|
let crashID = aCrashID;
|
2012-08-21 15:29:46 -07:00
|
|
|
try {
|
2012-10-29 17:27:09 -07:00
|
|
|
// For chrome crashes, we want to report the lastRunCrashID.
|
|
|
|
if (isChrome) {
|
2012-10-11 07:18:00 -07:00
|
|
|
crashID = Cc["@mozilla.org/xre/app-info;1"]
|
|
|
|
.getService(Ci.nsIXULRuntime).lastRunCrashID;
|
2012-10-29 17:27:09 -07:00
|
|
|
}
|
2012-08-21 15:29:46 -07:00
|
|
|
} catch(e) { }
|
2012-07-18 17:19:41 -07:00
|
|
|
|
2012-10-29 11:18:50 -07:00
|
|
|
// Bail if there isn't a valid crashID.
|
|
|
|
if (!crashID) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2012-10-29 17:27:09 -07:00
|
|
|
// Check if we should automatically submit this crash.
|
2012-10-29 11:18:50 -07:00
|
|
|
if (Services.prefs.getBoolPref("app.reportCrashes")) {
|
|
|
|
this.submitCrash(crashID);
|
|
|
|
}
|
2012-10-29 17:27:09 -07:00
|
|
|
} catch (e) { }
|
|
|
|
|
|
|
|
// Let Gaia notify the user of the crash.
|
|
|
|
this.sendChromeEvent({
|
|
|
|
type: "handle-crash",
|
|
|
|
crashID: crashID,
|
|
|
|
chrome: isChrome
|
|
|
|
});
|
2012-07-18 14:40:24 -07:00
|
|
|
},
|
|
|
|
|
2012-10-29 11:18:50 -07:00
|
|
|
// This function submits a crash when we're online.
|
|
|
|
submitCrash: function shell_submitCrash(aCrashID) {
|
2012-11-26 15:29:20 -08:00
|
|
|
if (this.onlineForCrashReport()) {
|
2012-11-15 08:42:00 -08:00
|
|
|
this.CrashSubmit.submit(aCrashID);
|
|
|
|
return;
|
|
|
|
}
|
2012-11-26 15:29:20 -08:00
|
|
|
|
2012-10-29 11:18:50 -07:00
|
|
|
Services.obs.addObserver(function observer(subject, topic, state) {
|
2012-11-26 15:29:20 -08:00
|
|
|
let network = subject.QueryInterface(Ci.nsINetworkInterface);
|
|
|
|
if (network.state == Ci.nsINetworkInterface.NETWORK_STATE_CONNECTED
|
|
|
|
&& network.type == Ci.nsINetworkInterface.NETWORK_TYPE_WIFI) {
|
2012-10-29 11:18:50 -07:00
|
|
|
shell.CrashSubmit.submit(aCrashID);
|
|
|
|
Services.obs.removeObserver(observer, topic);
|
|
|
|
}
|
2012-11-26 15:29:20 -08:00
|
|
|
}, "network-interface-state-changed", false);
|
2012-10-29 11:18:50 -07:00
|
|
|
},
|
|
|
|
|
2012-02-01 16:46:50 -08:00
|
|
|
get contentBrowser() {
|
|
|
|
delete this.contentBrowser;
|
|
|
|
return this.contentBrowser = document.getElementById('homescreen');
|
2011-12-06 15:52:26 -08:00
|
|
|
},
|
|
|
|
|
2011-12-08 17:16:03 -08:00
|
|
|
get homeURL() {
|
2011-12-06 15:52:26 -08:00
|
|
|
try {
|
2011-12-08 17:16:03 -08:00
|
|
|
let homeSrc = Services.env.get('B2G_HOMESCREEN');
|
2011-12-06 15:52:26 -08:00
|
|
|
if (homeSrc)
|
|
|
|
return homeSrc;
|
|
|
|
} catch (e) {}
|
|
|
|
|
2012-03-23 16:39:15 -07:00
|
|
|
return Services.prefs.getCharPref('browser.homescreenURL');
|
2011-12-06 15:52:26 -08:00
|
|
|
},
|
|
|
|
|
2012-06-20 12:25:23 -07:00
|
|
|
get manifestURL() {
|
|
|
|
return Services.prefs.getCharPref('browser.manifestURL');
|
2012-11-27 11:28:56 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
_started: false,
|
|
|
|
hasStarted: function shell_hasStarted() {
|
|
|
|
return this._started;
|
|
|
|
},
|
2012-06-20 12:25:23 -07:00
|
|
|
|
2012-04-11 10:05:35 -07:00
|
|
|
start: function shell_start() {
|
2012-11-27 11:28:56 -08:00
|
|
|
this._started = true;
|
|
|
|
|
2012-11-13 09:40:00 -08:00
|
|
|
// This forces the initialization of the cookie service before we hit the
|
|
|
|
// network.
|
|
|
|
// See bug 810209
|
|
|
|
let cookies = Cc["@mozilla.org/cookieService;1"];
|
|
|
|
|
2012-09-26 15:49:46 -07:00
|
|
|
try {
|
2012-10-05 12:16:13 -07:00
|
|
|
let cr = Cc["@mozilla.org/xre/app-info;1"]
|
|
|
|
.getService(Ci.nsICrashReporter);
|
2012-10-04 21:10:45 -07:00
|
|
|
// Dogfood id. We might want to remove it in the future.
|
|
|
|
// see bug 789466
|
|
|
|
try {
|
|
|
|
let dogfoodId = Services.prefs.getCharPref('prerelease.dogfood.id');
|
|
|
|
if (dogfoodId != "") {
|
|
|
|
cr.annotateCrashReport("Email", dogfoodId);
|
|
|
|
}
|
2012-09-26 15:49:46 -07:00
|
|
|
}
|
2012-10-04 21:10:45 -07:00
|
|
|
catch (e) { }
|
2012-09-26 15:49:46 -07:00
|
|
|
|
2012-10-04 10:29:43 -07:00
|
|
|
#ifdef MOZ_WIDGET_GONK
|
2012-10-04 21:10:45 -07:00
|
|
|
// Annotate crash report
|
|
|
|
let annotations = [ [ "Android_Hardware", "ro.hardware" ],
|
|
|
|
[ "Android_Device", "ro.product.device" ],
|
|
|
|
[ "Android_CPU_ABI2", "ro.product.cpu.abi2" ],
|
|
|
|
[ "Android_CPU_ABI", "ro.product.cpu.abi" ],
|
|
|
|
[ "Android_Manufacturer", "ro.product.manufacturer" ],
|
|
|
|
[ "Android_Brand", "ro.product.brand" ],
|
|
|
|
[ "Android_Model", "ro.product.model" ],
|
|
|
|
[ "Android_Board", "ro.product.board" ],
|
|
|
|
];
|
|
|
|
|
|
|
|
annotations.forEach(function (element) {
|
|
|
|
cr.annotateCrashReport(element[0], libcutils.property_get(element[1]));
|
|
|
|
});
|
|
|
|
|
|
|
|
let androidVersion = libcutils.property_get("ro.build.version.sdk") +
|
|
|
|
"(" + libcutils.property_get("ro.build.version.codename") + ")";
|
|
|
|
cr.annotateCrashReport("Android_Version", androidVersion);
|
2012-10-04 10:29:43 -07:00
|
|
|
#endif
|
2012-10-04 21:10:45 -07:00
|
|
|
} catch(e) { }
|
2012-10-04 10:29:43 -07:00
|
|
|
|
2011-12-08 17:16:03 -08:00
|
|
|
let homeURL = this.homeURL;
|
|
|
|
if (!homeURL) {
|
2012-03-21 15:50:53 -07:00
|
|
|
let msg = 'Fatal error during startup: No homescreen found: try setting B2G_HOMESCREEN';
|
2012-04-11 10:05:35 -07:00
|
|
|
alert(msg);
|
|
|
|
return;
|
2011-12-08 17:16:03 -08:00
|
|
|
}
|
|
|
|
|
2012-06-20 12:25:23 -07:00
|
|
|
let manifestURL = this.manifestURL;
|
|
|
|
// <html:iframe id="homescreen"
|
2012-10-29 15:02:24 -07:00
|
|
|
// mozbrowser="true" allowfullscreen="true"
|
2012-06-20 12:25:23 -07:00
|
|
|
// style="overflow: hidden; -moz-box-flex: 1; border: none;"
|
|
|
|
// src="data:text/html;charset=utf-8,%3C!DOCTYPE html>%3Cbody style='background:black;'>"/>
|
|
|
|
let browserFrame =
|
|
|
|
document.createElementNS('http://www.w3.org/1999/xhtml', 'html:iframe');
|
|
|
|
browserFrame.setAttribute('id', 'homescreen');
|
|
|
|
browserFrame.setAttribute('mozbrowser', 'true');
|
|
|
|
browserFrame.setAttribute('mozapp', manifestURL);
|
2012-10-29 15:02:24 -07:00
|
|
|
browserFrame.setAttribute('allowfullscreen', 'true');
|
2012-06-20 12:25:23 -07:00
|
|
|
browserFrame.setAttribute('style', "overflow: hidden; -moz-box-flex: 1; border: none;");
|
|
|
|
browserFrame.setAttribute('src', "data:text/html;charset=utf-8,%3C!DOCTYPE html>%3Cbody style='background:black;");
|
|
|
|
document.getElementById('shell').appendChild(browserFrame);
|
|
|
|
|
2012-06-26 08:18:10 -07:00
|
|
|
browserFrame.contentWindow
|
|
|
|
.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
|
|
.sessionHistory = Cc["@mozilla.org/browser/shistory;1"]
|
|
|
|
.createInstance(Ci.nsISHistory);
|
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
// Capture all key events so we can filter out hardware buttons
|
|
|
|
// And send them to Gaia via mozChromeEvents.
|
|
|
|
// Ideally, hardware buttons wouldn't generate key events at all, or
|
|
|
|
// if they did, they would use keycodes that conform to DOM 3 Events.
|
|
|
|
// See discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=762362
|
|
|
|
window.addEventListener('keydown', this, true);
|
|
|
|
window.addEventListener('keypress', this, true);
|
|
|
|
window.addEventListener('keyup', this, true);
|
2011-12-14 02:17:51 -08:00
|
|
|
window.addEventListener('MozApplicationManifest', this);
|
2012-02-17 13:37:53 -08:00
|
|
|
window.addEventListener('mozfullscreenchange', this);
|
2012-04-04 23:03:00 -07:00
|
|
|
window.addEventListener('sizemodechange', this);
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.addEventListener('mozbrowserloadstart', this, true);
|
2011-12-06 15:52:26 -08:00
|
|
|
|
2012-03-16 15:23:28 -07:00
|
|
|
CustomEventManager.init();
|
2012-03-16 15:23:28 -07:00
|
|
|
WebappsHelper.init();
|
2012-08-26 20:14:42 -07:00
|
|
|
AccessFu.attach(window);
|
2012-10-03 13:27:46 -07:00
|
|
|
UserAgentOverrides.init();
|
2012-03-16 15:23:28 -07:00
|
|
|
|
2012-06-18 10:41:09 -07:00
|
|
|
// XXX could factor out into a settings->pref map. Not worth it yet.
|
|
|
|
SettingsListener.observe("debug.fps.enabled", false, function(value) {
|
|
|
|
Services.prefs.setBoolPref("layers.acceleration.draw-fps", value);
|
|
|
|
});
|
|
|
|
SettingsListener.observe("debug.paint-flashing.enabled", false, function(value) {
|
|
|
|
Services.prefs.setBoolPref("nglayout.debug.paint_flashing", value);
|
|
|
|
});
|
|
|
|
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.src = homeURL;
|
2012-09-29 10:57:18 -07:00
|
|
|
this.isHomeLoaded = false;
|
2012-08-15 09:00:02 -07:00
|
|
|
|
|
|
|
ppmm.addMessageListener("content-handler", this);
|
2012-10-01 11:28:01 -07:00
|
|
|
ppmm.addMessageListener("dial-handler", this);
|
|
|
|
ppmm.addMessageListener("sms-handler", this);
|
|
|
|
ppmm.addMessageListener("mail-handler", this);
|
2012-11-28 22:36:15 -08:00
|
|
|
ppmm.addMessageListener("app-notification-send", AlertsHelper);
|
2011-12-06 15:52:26 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
stop: function shell_stop() {
|
2012-07-17 23:20:19 -07:00
|
|
|
window.removeEventListener('keydown', this, true);
|
|
|
|
window.removeEventListener('keypress', this, true);
|
|
|
|
window.removeEventListener('keyup', this, true);
|
2011-12-14 02:17:51 -08:00
|
|
|
window.removeEventListener('MozApplicationManifest', this);
|
2012-03-05 10:09:05 -08:00
|
|
|
window.removeEventListener('mozfullscreenchange', this);
|
2012-04-04 23:03:00 -07:00
|
|
|
window.removeEventListener('sizemodechange', this);
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.removeEventListener('mozbrowserloadstart', this, true);
|
2012-08-15 09:00:02 -07:00
|
|
|
ppmm.removeMessageListener("content-handler", this);
|
2012-08-29 19:46:35 -07:00
|
|
|
if (this.timer) {
|
|
|
|
this.timer.cancel();
|
|
|
|
this.timer = null;
|
|
|
|
}
|
2012-05-04 11:02:05 -07:00
|
|
|
|
|
|
|
#ifndef MOZ_WIDGET_GONK
|
|
|
|
delete Services.audioManager;
|
|
|
|
#endif
|
2012-10-03 13:27:46 -07:00
|
|
|
UserAgentOverrides.uninit();
|
2011-12-06 15:52:26 -08:00
|
|
|
},
|
2012-06-30 18:42:10 -07:00
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
// If this key event actually represents a hardware button, filter it here
|
|
|
|
// and send a mozChromeEvent with detail.type set to xxx-button-press or
|
|
|
|
// xxx-button-release instead.
|
|
|
|
filterHardwareKeys: function shell_filterHardwareKeys(evt) {
|
|
|
|
var type;
|
|
|
|
switch (evt.keyCode) {
|
|
|
|
case evt.DOM_VK_HOME: // Home button
|
|
|
|
type = 'home-button';
|
|
|
|
break;
|
|
|
|
case evt.DOM_VK_SLEEP: // Sleep button
|
2012-07-27 16:19:30 -07:00
|
|
|
case evt.DOM_VK_END: // On desktop we don't have a sleep button
|
2012-07-17 23:20:19 -07:00
|
|
|
type = 'sleep-button';
|
|
|
|
break;
|
|
|
|
case evt.DOM_VK_PAGE_UP: // Volume up button
|
|
|
|
type = 'volume-up-button';
|
|
|
|
break;
|
|
|
|
case evt.DOM_VK_PAGE_DOWN: // Volume down button
|
|
|
|
type = 'volume-down-button';
|
|
|
|
break;
|
|
|
|
case evt.DOM_VK_ESCAPE: // Back button (should be disabled)
|
|
|
|
type = 'back-button';
|
|
|
|
break;
|
|
|
|
case evt.DOM_VK_CONTEXT_MENU: // Menu button
|
|
|
|
type = 'menu-button';
|
|
|
|
break;
|
2012-11-06 17:45:54 -08:00
|
|
|
case evt.DOM_VK_F1: // headset button
|
|
|
|
type = 'headset-button';
|
|
|
|
break;
|
2012-07-17 23:20:19 -07:00
|
|
|
default: // Anything else is a real key
|
|
|
|
return; // Don't filter it at all; let it propagate to Gaia
|
|
|
|
}
|
2012-03-05 10:09:05 -08:00
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
// If we didn't return, then the key event represents a hardware key
|
|
|
|
// and we need to prevent it from propagating to Gaia
|
|
|
|
evt.stopImmediatePropagation();
|
|
|
|
evt.preventDefault(); // Prevent keypress events (when #501496 is fixed).
|
|
|
|
|
|
|
|
// If it is a key down or key up event, we send a chrome event to Gaia.
|
|
|
|
// If it is a keypress event we just ignore it.
|
|
|
|
switch (evt.type) {
|
|
|
|
case 'keydown':
|
|
|
|
type = type + '-press';
|
|
|
|
break;
|
|
|
|
case 'keyup':
|
|
|
|
type = type + '-release';
|
|
|
|
break;
|
|
|
|
case 'keypress':
|
|
|
|
return;
|
|
|
|
}
|
2012-09-11 18:17:01 -07:00
|
|
|
|
2012-11-06 17:45:54 -08:00
|
|
|
// Let applications receive the headset button key press/release event.
|
|
|
|
if (evt.keyCode == evt.DOM_VK_F1 && type !== this.lastHardwareButtonEventType) {
|
|
|
|
this.lastHardwareButtonEventType = type;
|
|
|
|
gSystemMessenger.broadcastMessage('headset-button', type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
// On my device, the physical hardware buttons (sleep and volume)
|
|
|
|
// send multiple events (press press release release), but the
|
|
|
|
// soft home button just sends one. This hack is to manually
|
|
|
|
// "debounce" the keys. If the type of this event is the same as
|
|
|
|
// the type of the last one, then don't send it. We'll never send
|
|
|
|
// two presses or two releases in a row.
|
|
|
|
// FIXME: https://bugzilla.mozilla.org/show_bug.cgi?id=761067
|
|
|
|
if (type !== this.lastHardwareButtonEventType) {
|
|
|
|
this.lastHardwareButtonEventType = type;
|
|
|
|
this.sendChromeEvent({type: type});
|
|
|
|
}
|
2012-03-05 10:09:05 -08:00
|
|
|
},
|
2012-08-29 19:46:35 -07:00
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
lastHardwareButtonEventType: null, // property for the hack above
|
2012-08-29 19:46:35 -07:00
|
|
|
needBufferSysMsgs: true,
|
|
|
|
bufferedSysMsgs: [],
|
|
|
|
timer: null,
|
2012-03-05 10:09:05 -08:00
|
|
|
|
2011-12-06 15:52:26 -08:00
|
|
|
handleEvent: function shell_handleEvent(evt) {
|
2012-06-20 12:25:23 -07:00
|
|
|
let content = this.contentBrowser.contentWindow;
|
2011-12-06 15:52:26 -08:00
|
|
|
switch (evt.type) {
|
2012-03-05 10:09:05 -08:00
|
|
|
case 'keydown':
|
|
|
|
case 'keyup':
|
2011-12-06 15:52:26 -08:00
|
|
|
case 'keypress':
|
2012-07-17 23:20:19 -07:00
|
|
|
this.filterHardwareKeys(evt);
|
2012-02-07 21:22:34 -08:00
|
|
|
break;
|
2012-02-17 13:37:53 -08:00
|
|
|
case 'mozfullscreenchange':
|
|
|
|
// When the screen goes fullscreen make sure to set the focus to the
|
|
|
|
// main window so noboby can prevent the ESC key to get out fullscreen
|
|
|
|
// mode
|
|
|
|
if (document.mozFullScreen)
|
|
|
|
Services.fm.focusedWindow = window;
|
|
|
|
break;
|
2012-04-04 23:03:00 -07:00
|
|
|
case 'sizemodechange':
|
|
|
|
if (window.windowState == window.STATE_MINIMIZED) {
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.setVisible(false);
|
2012-04-04 23:03:00 -07:00
|
|
|
} else {
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.setVisible(true);
|
2012-04-04 23:03:00 -07:00
|
|
|
}
|
|
|
|
break;
|
2012-06-20 12:25:23 -07:00
|
|
|
case 'mozbrowserloadstart':
|
2012-06-25 23:42:45 -07:00
|
|
|
if (content.document.location == 'about:blank')
|
|
|
|
return;
|
|
|
|
|
2012-06-20 12:25:23 -07:00
|
|
|
this.contentBrowser.removeEventListener('mozbrowserloadstart', this, true);
|
2012-02-01 16:46:49 -08:00
|
|
|
|
2012-10-29 17:27:09 -07:00
|
|
|
this.reportCrash(true);
|
2012-07-18 14:40:24 -07:00
|
|
|
|
2012-02-01 16:46:49 -08:00
|
|
|
let chromeWindow = window.QueryInterface(Ci.nsIDOMChromeWindow);
|
|
|
|
chromeWindow.browserDOMWindow = new nsBrowserAccess();
|
|
|
|
|
2012-09-19 09:28:55 -07:00
|
|
|
Cu.import('resource://gre/modules/Webapps.jsm');
|
|
|
|
DOMApplicationRegistry.allAppsLaunchable = true;
|
|
|
|
|
2011-12-06 15:52:26 -08:00
|
|
|
this.sendEvent(window, 'ContentStart');
|
2012-09-29 10:57:18 -07:00
|
|
|
|
|
|
|
content.addEventListener('load', function shell_homeLoaded() {
|
|
|
|
content.removeEventListener('load', shell_homeLoaded);
|
|
|
|
shell.isHomeLoaded = true;
|
|
|
|
|
|
|
|
if ('pendingChromeEvents' in shell) {
|
|
|
|
shell.pendingChromeEvents.forEach((shell.sendChromeEvent).bind(shell));
|
|
|
|
}
|
|
|
|
delete shell.pendingChromeEvents;
|
|
|
|
});
|
|
|
|
|
2011-12-06 15:52:26 -08:00
|
|
|
break;
|
2011-12-14 02:17:51 -08:00
|
|
|
case 'MozApplicationManifest':
|
|
|
|
try {
|
2011-12-14 12:02:48 -08:00
|
|
|
if (!Services.prefs.getBoolPref('browser.cache.offline.enable'))
|
|
|
|
return;
|
|
|
|
|
2011-12-14 02:17:51 -08:00
|
|
|
let contentWindow = evt.originalTarget.defaultView;
|
|
|
|
let documentElement = contentWindow.document.documentElement;
|
|
|
|
if (!documentElement)
|
|
|
|
return;
|
|
|
|
|
2012-02-01 16:46:49 -08:00
|
|
|
let manifest = documentElement.getAttribute('manifest');
|
2011-12-14 02:17:51 -08:00
|
|
|
if (!manifest)
|
|
|
|
return;
|
|
|
|
|
2012-07-20 18:06:35 -07:00
|
|
|
let principal = contentWindow.document.nodePrincipal;
|
|
|
|
if (Services.perms.testPermissionFromPrincipal(principal, 'offline-app') == Ci.nsIPermissionManager.UNKNOWN_ACTION) {
|
2011-12-14 12:02:48 -08:00
|
|
|
if (Services.prefs.getBoolPref('browser.offline-apps.notify')) {
|
|
|
|
// FIXME Bug 710729 - Add a UI for offline cache notifications
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-20 18:06:35 -07:00
|
|
|
Services.perms.addFromPrincipal(principal, 'offline-app',
|
|
|
|
Ci.nsIPermissionManager.ALLOW_ACTION);
|
2011-12-14 02:17:51 -08:00
|
|
|
|
2011-12-14 12:02:48 -08:00
|
|
|
let manifestURI = Services.io.newURI(manifest, null, documentURI);
|
2011-12-14 02:17:51 -08:00
|
|
|
let updateService = Cc['@mozilla.org/offlinecacheupdate-service;1']
|
|
|
|
.getService(Ci.nsIOfflineCacheUpdateService);
|
|
|
|
updateService.scheduleUpdate(manifestURI, documentURI, window);
|
|
|
|
} catch (e) {
|
|
|
|
dump('Error while creating offline cache: ' + e + '\n');
|
|
|
|
}
|
|
|
|
break;
|
2011-12-06 15:52:26 -08:00
|
|
|
}
|
|
|
|
},
|
2012-08-15 09:00:02 -07:00
|
|
|
|
2011-12-06 15:52:26 -08:00
|
|
|
sendEvent: function shell_sendEvent(content, type, details) {
|
|
|
|
let event = content.document.createEvent('CustomEvent');
|
|
|
|
event.initCustomEvent(type, true, true, details ? details : {});
|
|
|
|
content.dispatchEvent(event);
|
2012-07-17 23:20:19 -07:00
|
|
|
},
|
2012-08-15 09:00:02 -07:00
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
sendChromeEvent: function shell_sendChromeEvent(details) {
|
2012-09-29 10:57:18 -07:00
|
|
|
if (!this.isHomeLoaded) {
|
|
|
|
if (!('pendingChromeEvents' in this)) {
|
|
|
|
this.pendingChromeEvents = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
this.pendingChromeEvents.push(details);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-19 12:00:19 -07:00
|
|
|
this.sendEvent(getContentWindow(), "mozChromeEvent",
|
|
|
|
ObjectWrapper.wrap(details, getContentWindow()));
|
2012-08-15 09:00:02 -07:00
|
|
|
},
|
|
|
|
|
2012-08-29 19:46:35 -07:00
|
|
|
sendSystemMessage: function shell_sendSystemMessage(msg) {
|
|
|
|
let origin = Services.io.newURI(msg.manifest, null, null).prePath;
|
|
|
|
this.sendChromeEvent({
|
|
|
|
type: 'open-app',
|
|
|
|
url: msg.uri,
|
2012-09-07 08:41:26 -07:00
|
|
|
manifestURL: msg.manifest,
|
2012-08-29 19:46:35 -07:00
|
|
|
isActivity: (msg.type == 'activity'),
|
|
|
|
target: msg.target
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-08-15 09:00:02 -07:00
|
|
|
receiveMessage: function shell_receiveMessage(message) {
|
2012-10-01 11:28:01 -07:00
|
|
|
var names = { 'content-handler': 'view',
|
|
|
|
'dial-handler' : 'dial',
|
|
|
|
'mail-handler' : 'new',
|
|
|
|
'sms-handler' : 'new' }
|
|
|
|
|
|
|
|
if (!(message.name in names))
|
2012-08-15 09:00:02 -07:00
|
|
|
return;
|
2012-10-01 11:28:01 -07:00
|
|
|
|
|
|
|
let data = message.data;
|
2012-08-15 09:00:02 -07:00
|
|
|
new MozActivity({
|
2012-10-01 11:28:01 -07:00
|
|
|
name: names[message.name],
|
|
|
|
data: data
|
2012-08-15 09:00:02 -07:00
|
|
|
});
|
2012-02-01 16:46:49 -08:00
|
|
|
}
|
2011-12-06 15:52:26 -08:00
|
|
|
};
|
|
|
|
|
2012-02-01 16:46:49 -08:00
|
|
|
function nsBrowserAccess() {
|
|
|
|
}
|
|
|
|
|
|
|
|
nsBrowserAccess.prototype = {
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIBrowserDOMWindow]),
|
|
|
|
|
|
|
|
openURI: function openURI(uri, opener, where, context) {
|
|
|
|
// TODO This should be replaced by an 'open-browser-window' intent
|
2012-06-20 12:25:23 -07:00
|
|
|
let content = shell.contentBrowser.contentWindow;
|
2012-02-01 16:46:49 -08:00
|
|
|
let contentWindow = content.wrappedJSObject;
|
|
|
|
if (!('getApplicationManager' in contentWindow))
|
|
|
|
return null;
|
|
|
|
|
|
|
|
let applicationManager = contentWindow.getApplicationManager();
|
|
|
|
if (!applicationManager)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
let url = uri ? uri.spec : 'about:blank';
|
|
|
|
let window = applicationManager.launch(url, where);
|
|
|
|
return window.contentWindow;
|
|
|
|
},
|
|
|
|
|
|
|
|
openURIInFrame: function openURIInFrame(uri, opener, where, context) {
|
|
|
|
throw new Error('Not Implemented');
|
|
|
|
},
|
|
|
|
|
|
|
|
isTabContentWindow: function isTabContentWindow(contentWindow) {
|
|
|
|
return contentWindow == window;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-07-02 17:16:55 -07:00
|
|
|
// Listen for system messages and relay them to Gaia.
|
2012-07-20 08:41:30 -07:00
|
|
|
Services.obs.addObserver(function onSystemMessage(subject, topic, data) {
|
|
|
|
let msg = JSON.parse(data);
|
2012-08-29 19:46:35 -07:00
|
|
|
// Buffer non-activity messages until content starts to load for 10 seconds.
|
|
|
|
// We'll revisit this later if new kind of messages don't need to be cached.
|
|
|
|
if (shell.needBufferSysMsgs && msg.type !== 'activity') {
|
|
|
|
shell.bufferedSysMsgs.push(msg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
shell.sendSystemMessage(msg);
|
2012-07-20 08:41:30 -07:00
|
|
|
}, 'system-messages-open-app', false);
|
2012-07-02 17:16:55 -07:00
|
|
|
|
2012-07-30 19:09:31 -07:00
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
2012-08-19 12:00:19 -07:00
|
|
|
shell.sendChromeEvent({ type: "fullscreenoriginchange",
|
|
|
|
fullscreenorigin: aData });
|
2012-07-30 19:09:31 -07:00
|
|
|
}, "fullscreen-origin-change", false);
|
|
|
|
|
2012-10-16 21:30:43 -07:00
|
|
|
Services.obs.addObserver(function onWebappsStart(subject, topic, data) {
|
|
|
|
shell.sendChromeEvent({ type: 'webapps-registry-start' });
|
|
|
|
}, 'webapps-registry-start', false);
|
|
|
|
|
2012-09-11 18:17:01 -07:00
|
|
|
Services.obs.addObserver(function onWebappsReady(subject, topic, data) {
|
|
|
|
shell.sendChromeEvent({ type: 'webapps-registry-ready' });
|
|
|
|
}, 'webapps-registry-ready', false);
|
|
|
|
|
2012-09-26 19:24:39 -07:00
|
|
|
Services.obs.addObserver(function onBluetoothVolumeChange(subject, topic, data) {
|
2012-10-25 03:50:46 -07:00
|
|
|
shell.sendChromeEvent({
|
2012-11-07 10:12:41 -08:00
|
|
|
type: "bluetooth-volumeset",
|
2012-10-25 03:50:46 -07:00
|
|
|
value: data
|
|
|
|
});
|
2012-09-26 19:24:39 -07:00
|
|
|
}, 'bluetooth-volume-change', false);
|
|
|
|
|
2012-04-11 10:05:35 -07:00
|
|
|
var CustomEventManager = {
|
2012-03-16 15:23:28 -07:00
|
|
|
init: function custevt_init() {
|
|
|
|
window.addEventListener("ContentStart", (function(evt) {
|
2012-06-20 12:25:23 -07:00
|
|
|
let content = shell.contentBrowser.contentWindow;
|
2012-03-16 15:23:28 -07:00
|
|
|
content.addEventListener("mozContentEvent", this, false, true);
|
2012-08-29 19:46:35 -07:00
|
|
|
|
|
|
|
// After content starts to load for 10 seconds, send and
|
|
|
|
// clean up the buffered system messages if there is any.
|
|
|
|
shell.timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
|
|
|
|
shell.timer.initWithCallback(function timerCallback() {
|
|
|
|
shell.bufferedSysMsgs.forEach(function sendSysMsg(msg) {
|
|
|
|
shell.sendSystemMessage(msg);
|
|
|
|
});
|
|
|
|
shell.bufferedSysMsgs.length = 0;
|
|
|
|
shell.needBufferSysMsgs = false;
|
|
|
|
shell.timer = null;
|
|
|
|
}, 10000, Ci.nsITimer.TYPE_ONE_SHOT);
|
2012-03-16 15:23:28 -07:00
|
|
|
}).bind(this), false);
|
|
|
|
},
|
|
|
|
|
|
|
|
handleEvent: function custevt_handleEvent(evt) {
|
|
|
|
let detail = evt.detail;
|
2012-07-02 17:16:55 -07:00
|
|
|
dump('XXX FIXME : Got a mozContentEvent: ' + detail.type + "\n");
|
2012-03-16 15:23:28 -07:00
|
|
|
|
|
|
|
switch(detail.type) {
|
2012-06-06 05:19:33 -07:00
|
|
|
case 'desktop-notification-click':
|
|
|
|
case 'desktop-notification-close':
|
2012-03-16 15:23:28 -07:00
|
|
|
AlertsHelper.handleEvent(detail);
|
|
|
|
break;
|
2012-06-06 05:19:33 -07:00
|
|
|
case 'webapps-install-granted':
|
|
|
|
case 'webapps-install-denied':
|
2012-03-20 14:25:37 -07:00
|
|
|
WebappsHelper.handleEvent(detail);
|
|
|
|
break;
|
2012-06-06 05:19:33 -07:00
|
|
|
case 'select-choicechange':
|
|
|
|
FormsHelper.handleEvent(detail);
|
|
|
|
break;
|
2012-09-05 13:00:06 -07:00
|
|
|
case 'system-message-listener-ready':
|
|
|
|
Services.obs.notifyObservers(null, 'system-message-listener-ready', null);
|
|
|
|
break;
|
2012-03-16 15:23:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-11 10:05:35 -07:00
|
|
|
var AlertsHelper = {
|
2012-03-16 15:23:28 -07:00
|
|
|
_listeners: {},
|
|
|
|
_count: 0,
|
|
|
|
|
|
|
|
handleEvent: function alert_handleEvent(detail) {
|
|
|
|
if (!detail || !detail.id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let listener = this._listeners[detail.id];
|
2012-11-28 22:36:15 -08:00
|
|
|
if (!listener)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let topic = detail.type == "desktop-notification-click" ? "alertclickcallback"
|
|
|
|
: "alertfinished";
|
|
|
|
|
|
|
|
if (detail.id.startsWith("alert")) {
|
|
|
|
listener.observer.observe(null, topic, listener.cookie);
|
|
|
|
} else {
|
|
|
|
listener.mm.sendAsyncMessage("app-notification-return",
|
|
|
|
{ id: detail.id,
|
|
|
|
type: detail.type });
|
|
|
|
}
|
2012-03-16 15:23:28 -07:00
|
|
|
|
|
|
|
// we're done with this notification
|
|
|
|
if (topic === "alertfinished")
|
|
|
|
delete this._listeners[detail.id];
|
|
|
|
},
|
|
|
|
|
|
|
|
registerListener: function alert_registerListener(cookie, alertListener) {
|
|
|
|
let id = "alert" + this._count++;
|
|
|
|
this._listeners[id] = { observer: alertListener, cookie: cookie };
|
|
|
|
return id;
|
|
|
|
},
|
|
|
|
|
2012-11-28 22:36:15 -08:00
|
|
|
registerAppListener: function alertRegisterAppListener(id, mm, title, text,
|
|
|
|
manifestURL, imageURL) {
|
|
|
|
this._listeners[id] = {
|
|
|
|
mm: mm,
|
|
|
|
title: title,
|
|
|
|
text: text,
|
|
|
|
manifestURL: manifestURL,
|
|
|
|
imageURL: imageURL
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
showNotification: function alert_showNotification(imageUrl,
|
|
|
|
title,
|
|
|
|
text,
|
|
|
|
textClickable,
|
|
|
|
cookie,
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
manifestUrl) {
|
|
|
|
function send(appName, appIcon) {
|
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: "desktop-notification",
|
|
|
|
id: id,
|
|
|
|
icon: imageUrl,
|
|
|
|
title: title,
|
|
|
|
text: text,
|
|
|
|
appName: appName,
|
|
|
|
appIcon: appIcon
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a manifest URL, get the icon and title from the manifest
|
|
|
|
// to prevent spoofing.
|
|
|
|
if (manifestUrl && manifestUrl.length) {
|
|
|
|
let app = DOMApplicationRegistry.getAppByManifestURL(manifestUrl);
|
|
|
|
DOMApplicationRegistry.getManifestFor(app.origin, function(aManifest) {
|
|
|
|
let helper = new ManifestHelper(aManifest, app.origin);
|
|
|
|
send(helper.name, helper.iconURLForSize(128));
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
send(null, null);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-07-17 23:20:19 -07:00
|
|
|
showAlertNotification: function alert_showAlertNotification(imageUrl,
|
|
|
|
title,
|
|
|
|
text,
|
|
|
|
textClickable,
|
|
|
|
cookie,
|
|
|
|
alertListener,
|
2012-11-28 22:36:15 -08:00
|
|
|
name) {
|
|
|
|
let id = this.registerListener(null, alertListener);
|
|
|
|
this.showNotification(imageUrl, title, text, textClickable, cookie,
|
|
|
|
id, name, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
receiveMessage: function alert_receiveMessage(message) {
|
|
|
|
let data = message.data;
|
|
|
|
|
|
|
|
this.registerAppListener(data.id, message.target, data.title, data.text,
|
|
|
|
data.manifestURL, data.imageURL);
|
|
|
|
this.showNotification(data.imageURL, data.title, data.text,
|
|
|
|
data.textClickable, null,
|
|
|
|
data.id, null, data.manifestURL);
|
|
|
|
},
|
2012-03-16 15:23:28 -07:00
|
|
|
}
|
2012-03-16 15:23:28 -07:00
|
|
|
|
2012-04-11 10:05:35 -07:00
|
|
|
var WebappsHelper = {
|
2012-03-20 14:25:37 -07:00
|
|
|
_installers: {},
|
|
|
|
_count: 0,
|
|
|
|
|
2012-03-16 15:23:28 -07:00
|
|
|
init: function webapps_init() {
|
|
|
|
Services.obs.addObserver(this, "webapps-launch", false);
|
2012-03-20 14:25:37 -07:00
|
|
|
Services.obs.addObserver(this, "webapps-ask-install", false);
|
|
|
|
},
|
|
|
|
|
|
|
|
registerInstaller: function webapps_registerInstaller(data) {
|
|
|
|
let id = "installer" + this._count++;
|
|
|
|
this._installers[id] = data;
|
|
|
|
return id;
|
|
|
|
},
|
|
|
|
|
|
|
|
handleEvent: function webapps_handleEvent(detail) {
|
|
|
|
if (!detail || !detail.id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let installer = this._installers[detail.id];
|
2012-11-29 17:18:28 -08:00
|
|
|
delete this._installers[detail.id];
|
2012-03-20 14:25:37 -07:00
|
|
|
switch (detail.type) {
|
|
|
|
case "webapps-install-granted":
|
|
|
|
DOMApplicationRegistry.confirmInstall(installer);
|
|
|
|
break;
|
|
|
|
case "webapps-install-denied":
|
|
|
|
DOMApplicationRegistry.denyInstall(installer);
|
|
|
|
break;
|
|
|
|
}
|
2012-03-16 15:23:28 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
observe: function webapps_observe(subject, topic, data) {
|
|
|
|
let json = JSON.parse(data);
|
2012-09-18 10:34:55 -07:00
|
|
|
json.mm = subject;
|
|
|
|
|
2012-03-20 14:25:37 -07:00
|
|
|
switch(topic) {
|
|
|
|
case "webapps-launch":
|
|
|
|
DOMApplicationRegistry.getManifestFor(json.origin, function(aManifest) {
|
|
|
|
if (!aManifest)
|
|
|
|
return;
|
2012-03-16 15:23:28 -07:00
|
|
|
|
2012-10-02 22:38:03 -07:00
|
|
|
let manifest = new ManifestHelper(aManifest, json.origin);
|
2012-07-17 23:20:19 -07:00
|
|
|
shell.sendChromeEvent({
|
2012-05-04 11:02:05 -07:00
|
|
|
"type": "webapps-launch",
|
|
|
|
"url": manifest.fullLaunchPath(json.startPoint),
|
2012-09-07 08:41:26 -07:00
|
|
|
"manifestURL": json.manifestURL
|
2012-05-04 11:02:05 -07:00
|
|
|
});
|
2012-03-20 14:25:37 -07:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "webapps-ask-install":
|
|
|
|
let id = this.registerInstaller(json);
|
2012-07-17 23:20:19 -07:00
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: "webapps-ask-install",
|
|
|
|
id: id,
|
|
|
|
app: json.app
|
|
|
|
});
|
2012-03-20 14:25:37 -07:00
|
|
|
break;
|
|
|
|
}
|
2012-03-16 15:23:28 -07:00
|
|
|
}
|
|
|
|
}
|
2012-03-16 09:50:45 -07:00
|
|
|
|
|
|
|
// Start the debugger server.
|
|
|
|
function startDebugger() {
|
|
|
|
if (!DebuggerServer.initialized) {
|
2012-06-01 08:28:13 -07:00
|
|
|
// Allow remote connections.
|
|
|
|
DebuggerServer.init(function () { return true; });
|
2012-07-11 04:43:11 -07:00
|
|
|
DebuggerServer.addBrowserActors();
|
2012-03-16 09:50:45 -07:00
|
|
|
DebuggerServer.addActors('chrome://browser/content/dbg-browser-actors.js');
|
|
|
|
}
|
|
|
|
|
2012-06-08 00:00:46 -07:00
|
|
|
let port = Services.prefs.getIntPref('devtools.debugger.remote-port') || 6000;
|
2012-03-16 09:50:45 -07:00
|
|
|
try {
|
2012-06-20 06:31:50 -07:00
|
|
|
DebuggerServer.openListener(port);
|
2012-03-16 09:50:45 -07:00
|
|
|
} catch (e) {
|
|
|
|
dump('Unable to start debugger server: ' + e + '\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-28 02:48:10 -08:00
|
|
|
function stopDebugger() {
|
|
|
|
if (!DebuggerServer.initialized) {
|
|
|
|
return;
|
2012-03-16 09:50:45 -07:00
|
|
|
}
|
2012-11-28 02:48:10 -08:00
|
|
|
|
|
|
|
try {
|
|
|
|
DebuggerServer.closeListener();
|
|
|
|
} catch (e) {
|
|
|
|
dump('Unable to stop debugger server: ' + e + '\n');
|
|
|
|
}
|
|
|
|
}
|
2012-05-04 11:02:05 -07:00
|
|
|
|
2012-06-27 07:47:30 -07:00
|
|
|
// This is the backend for Gaia's screenshot feature. Gaia requests a
|
|
|
|
// screenshot by sending a mozContentEvent with detail.type set to
|
|
|
|
// 'take-screenshot'. Then we take a screenshot and send a
|
|
|
|
// mozChromeEvent with detail.type set to 'take-screenshot-success'
|
|
|
|
// and detail.file set to the an image/png blob
|
2012-06-15 00:20:44 -07:00
|
|
|
window.addEventListener('ContentStart', function ss_onContentStart() {
|
2012-06-20 12:25:23 -07:00
|
|
|
let content = shell.contentBrowser.contentWindow;
|
2012-06-15 00:20:44 -07:00
|
|
|
content.addEventListener('mozContentEvent', function ss_onMozContentEvent(e) {
|
2012-06-27 07:47:30 -07:00
|
|
|
if (e.detail.type !== 'take-screenshot')
|
2012-06-15 00:20:44 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
try {
|
|
|
|
var canvas = document.createElementNS('http://www.w3.org/1999/xhtml',
|
|
|
|
'canvas');
|
|
|
|
var width = window.innerWidth;
|
|
|
|
var height = window.innerHeight;
|
|
|
|
canvas.setAttribute('width', width);
|
|
|
|
canvas.setAttribute('height', height);
|
|
|
|
|
|
|
|
var context = canvas.getContext('2d');
|
|
|
|
var flags =
|
|
|
|
context.DRAWWINDOW_DRAW_CARET |
|
|
|
|
context.DRAWWINDOW_DRAW_VIEW |
|
|
|
|
context.DRAWWINDOW_USE_WIDGET_LAYERS;
|
|
|
|
context.drawWindow(window, 0, 0, width, height,
|
|
|
|
'rgb(255,255,255)', flags);
|
|
|
|
|
2012-08-21 15:12:37 -07:00
|
|
|
// I can't use sendChromeEvent() here because it doesn't wrap
|
|
|
|
// the blob in the detail object correctly. So I use __exposedProps__
|
|
|
|
// instead to safely send the chrome detail object to content.
|
|
|
|
shell.sendEvent(getContentWindow(), 'mozChromeEvent', {
|
|
|
|
__exposedProps__: { type: 'r', file: 'r' },
|
2012-07-17 23:20:19 -07:00
|
|
|
type: 'take-screenshot-success',
|
|
|
|
file: canvas.mozGetAsFile('screenshot', 'image/png')
|
2012-06-27 07:47:30 -07:00
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
dump('exception while creating screenshot: ' + e + '\n');
|
2012-07-17 23:20:19 -07:00
|
|
|
shell.sendChromeEvent({
|
2012-06-27 07:47:30 -07:00
|
|
|
type: 'take-screenshot-error',
|
2012-06-15 00:20:44 -07:00
|
|
|
error: String(e)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2012-07-24 09:34:12 -07:00
|
|
|
|
2012-10-11 07:18:00 -07:00
|
|
|
(function contentCrashTracker() {
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
let props = aSubject.QueryInterface(Ci.nsIPropertyBag2);
|
|
|
|
if (props.hasKey("abnormal") && props.hasKey("dumpID")) {
|
2012-10-29 17:27:09 -07:00
|
|
|
shell.reportCrash(false, props.getProperty("dumpID"));
|
2012-10-11 07:18:00 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"ipc:content-shutdown", false);
|
|
|
|
})();
|
|
|
|
|
2012-10-29 11:18:50 -07:00
|
|
|
// Listen for crashes submitted through the crash reporter UI.
|
|
|
|
window.addEventListener('ContentStart', function cr_onContentStart() {
|
|
|
|
let content = shell.contentBrowser.contentWindow;
|
|
|
|
content.addEventListener("mozContentEvent", function cr_onMozContentEvent(e) {
|
2012-10-29 17:27:09 -07:00
|
|
|
if (e.detail.type == "submit-crash" && e.detail.crashID) {
|
2012-10-29 11:18:50 -07:00
|
|
|
shell.submitCrash(e.detail.crashID);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-10-13 11:11:09 -07:00
|
|
|
window.addEventListener('ContentStart', function update_onContentStart() {
|
|
|
|
let updatePrompt = Cc["@mozilla.org/updates/update-prompt;1"]
|
|
|
|
.createInstance(Ci.nsIUpdatePrompt);
|
|
|
|
|
|
|
|
let content = shell.contentBrowser.contentWindow;
|
|
|
|
content.addEventListener("mozContentEvent", updatePrompt.wrappedJSObject);
|
|
|
|
});
|
|
|
|
|
2012-07-25 10:00:18 -07:00
|
|
|
(function geolocationStatusTracker() {
|
2012-07-26 04:35:47 -07:00
|
|
|
let gGeolocationActiveCount = 0;
|
2012-07-25 10:00:18 -07:00
|
|
|
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
let oldCount = gGeolocationActiveCount;
|
|
|
|
if (aData == "starting") {
|
|
|
|
gGeolocationActiveCount += 1;
|
|
|
|
} else if (aData == "shutdown") {
|
|
|
|
gGeolocationActiveCount -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to track changes from 1 <-> 0
|
|
|
|
if (gGeolocationActiveCount + oldCount == 1) {
|
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: 'geolocation-status',
|
|
|
|
active: (gGeolocationActiveCount == 1)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, "geolocation-device-events", false);
|
|
|
|
})();
|
2012-08-15 13:56:00 -07:00
|
|
|
|
2012-08-13 07:59:30 -07:00
|
|
|
(function headphonesStatusTracker() {
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
shell.sendChromeEvent({
|
2012-09-06 13:47:58 -07:00
|
|
|
type: 'headphones-status-changed',
|
2012-08-13 07:59:30 -07:00
|
|
|
state: aData
|
|
|
|
});
|
2012-09-06 13:47:58 -07:00
|
|
|
}, "headphones-status-changed", false);
|
2012-08-13 07:59:30 -07:00
|
|
|
})();
|
|
|
|
|
2012-08-15 13:56:00 -07:00
|
|
|
(function recordingStatusTracker() {
|
|
|
|
let gRecordingActiveCount = 0;
|
|
|
|
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
let oldCount = gRecordingActiveCount;
|
|
|
|
if (aData == "starting") {
|
|
|
|
gRecordingActiveCount += 1;
|
|
|
|
} else if (aData == "shutdown") {
|
|
|
|
gRecordingActiveCount -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need to track changes from 1 <-> 0
|
|
|
|
if (gRecordingActiveCount + oldCount == 1) {
|
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: 'recording-status',
|
|
|
|
active: (gRecordingActiveCount == 1)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, "recording-device-events", false);
|
|
|
|
})();
|
2012-09-04 08:51:46 -07:00
|
|
|
|
|
|
|
(function volumeStateTracker() {
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: 'volume-state-changed',
|
|
|
|
active: (aData == 'Shared')
|
|
|
|
});
|
|
|
|
}, 'volume-state-changed', false);
|
|
|
|
})();
|
2012-10-15 12:26:49 -07:00
|
|
|
|
|
|
|
Services.obs.addObserver(function(aSubject, aTopic, aData) {
|
|
|
|
let data = JSON.parse(aData);
|
|
|
|
shell.sendChromeEvent({
|
|
|
|
type: "activity-done",
|
|
|
|
success: data.success,
|
|
|
|
manifestURL: data.manifestURL,
|
|
|
|
pageURL: data.pageURL
|
|
|
|
});
|
|
|
|
}, "activity-done", false);
|