bug 910815 - refactor package installation to improve maintainability; r=fabrice

This commit is contained in:
Myk Melez 2013-11-25 15:14:35 -08:00
Родитель 9335f8c8a2
Коммит 8b5bea2ea0
3 изменённых файлов: 842 добавлений и 686 удалений

7
dom/apps/src/Makefile.in Normal file
Просмотреть файл

@ -0,0 +1,7 @@
# 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/.
ifdef MOZ_DEBUG
DEFINES += -DMOZ_DEBUG=1
endif

1519
dom/apps/src/Webapps.jsm Normal file → Executable file

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -37,7 +37,7 @@ function checkAppInstallError(aMiniManifestURL, aExpectedError) {
ok(true, "Got expected " + aExpectedError);
PackagedTestHelper.next();
} else {
ok(false, "Got unexpected " + aError);
ok(false, "Got unexpected " + error);
PackagedTestHelper.finish();
}
};