Bug 850210 - Part 4. Update Android's PermissionsHelper usage of contentPrefs to nsIContentPrefService2. r=adw

This commit is contained in:
Felipe Gomes 2013-03-29 23:08:54 -03:00
Родитель 2d0c4246fb
Коммит db680720ba
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -163,7 +163,9 @@ var PermissionsHelper = {
} else {
Services.perms.remove(aURI.host, aType);
// Clear content prefs set in ContentPermissionPrompt.js
Services.contentPrefs.removePref(aURI, aType + ".request.remember", aContext);
Cc["@mozilla.org/content-pref/service;1"]
.getService(Ci.nsIContentPrefService2)
.removeByDomainAndName(aURI.spec, aType + ".request.remember", aContext);
}
}
};