Bug 1177774 - Import ContentAreaUtils. r=margaret

This commit is contained in:
Michael Comella 2015-06-26 14:22:39 -07:00
parent fe83fce4c8
commit aee26db2f3

View File

@ -3,6 +3,8 @@
* 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/. */
/*globals ContentAreaUtils */
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
const APK_MIME_TYPE = "application/vnd.android.package-archive";
@ -20,6 +22,12 @@ Cu.import("resource://gre/modules/XPCOMUtils.jsm");
// HelperApp Launcher Dialog
// -----------------------------------------------------------------------
XPCOMUtils.defineLazyGetter(this, "ContentAreaUtils", function() {
let ContentAreaUtils = {};
Services.scriptloader.loadSubScript("chrome://global/content/contentAreaUtils.js", ContentAreaUtils);
return ContentAreaUtils;
});
function HelperAppLauncherDialog() { }
HelperAppLauncherDialog.prototype = {