Bug 738020 - add geolocation to the list of permissions that we autogrant. r=fabrice

This commit is contained in:
Doug Turner 2012-03-21 22:26:01 -07:00
Родитель e6085fff39
Коммит e19e647115
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -67,7 +67,8 @@ function startupHttpd(baseDir, port) {
function addPermissions(urls) {
let permissions = [
'indexedDB', 'indexedDB-unlimited', 'webapps-manage', 'offline-app',
'content-camera', 'webcontacts-manage', 'wifi-manage', 'desktop-notification'
'content-camera', 'webcontacts-manage', 'wifi-manage', 'desktop-notification',
'geolocation'
];
urls.forEach(function(url) {
let uri = Services.io.newURI(url, null, null);