Bug 746848. Support pref for webapps installer dry-run. r=gavin a=desktop-only

This commit is contained in:
Felipe Gomes 2012-04-19 18:47:52 -07:00
Родитель 89d85bb87b
Коммит 05752764fb
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -22,6 +22,12 @@ let WebappsInstaller = {
*/
install: function(aData) {
try {
if (Services.prefs.getBoolPref("browser.mozApps.installer.dry_run")) {
return true;
}
} catch (ex) {}
#ifdef XP_WIN
let shell = new WinNativeApp(aData);
#elifdef XP_MACOSX