Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | const Ci = Components.interfaces; |
michael@0 | 6 | const Cu = Components.utils; |
michael@0 | 7 | |
michael@0 | 8 | Cu.import("resource://gre/modules/XPCOMUtils.jsm"); |
michael@0 | 9 | Cu.import("resource://gre/modules/Services.jsm"); |
michael@0 | 10 | |
michael@0 | 11 | // ----------------------------------------------------------------------- |
michael@0 | 12 | // Web Install Prompt service |
michael@0 | 13 | // ----------------------------------------------------------------------- |
michael@0 | 14 | |
michael@0 | 15 | function WebInstallPrompt() { } |
michael@0 | 16 | |
michael@0 | 17 | WebInstallPrompt.prototype = { |
michael@0 | 18 | classID: Components.ID("{c1242012-27d8-477e-a0f1-0b098ffc329b}"), |
michael@0 | 19 | QueryInterface: XPCOMUtils.generateQI([Ci.amIWebInstallPrompt]), |
michael@0 | 20 | |
michael@0 | 21 | confirm: function(aWindow, aURL, aInstalls) { |
michael@0 | 22 | let bundle = Services.strings.createBundle("chrome://browser/locale/browser.properties"); |
michael@0 | 23 | |
michael@0 | 24 | let prompt = Services.prompt; |
michael@0 | 25 | let flags = prompt.BUTTON_POS_0 * prompt.BUTTON_TITLE_IS_STRING + prompt.BUTTON_POS_1 * prompt.BUTTON_TITLE_CANCEL; |
michael@0 | 26 | let title = bundle.GetStringFromName("addonsConfirmInstall.title"); |
michael@0 | 27 | let button = bundle.GetStringFromName("addonsConfirmInstall.install"); |
michael@0 | 28 | |
michael@0 | 29 | aInstalls.forEach(function(install) { |
michael@0 | 30 | let result = (prompt.confirmEx(aWindow, title, install.name, flags, button, null, null, null, {value: false}) == 0); |
michael@0 | 31 | if (result) |
michael@0 | 32 | install.install(); |
michael@0 | 33 | else |
michael@0 | 34 | install.cancel(); |
michael@0 | 35 | }); |
michael@0 | 36 | } |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | this.NSGetFactory = XPCOMUtils.generateNSGetFactory([WebInstallPrompt]); |