зеркало из https://github.com/mozilla/gecko-dev.git
Bug 830027 - Allow all device APIs that uses the content permission prompt from the system principal. r=fabrice/gwagner a=tef+
This commit is contained in:
Родитель
1882366688
Коммит
244459f18c
|
@ -117,6 +117,12 @@ ContentPermissionPrompt.prototype = {
|
|||
},
|
||||
|
||||
prompt: function(request) {
|
||||
|
||||
if (secMan.isSystemPrincipal(request.principal)) {
|
||||
request.allow();
|
||||
return true;
|
||||
}
|
||||
|
||||
if (this.handledByApp(request))
|
||||
return;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче