Bug 1314803 - Remove supportsHardwareH264 from about:support r=mattwoodrow

This commit is contained in:
George Wright 2017-01-26 13:11:17 -05:00
Родитель 97a8750da1
Коммит 336c9d520c
3 изменённых файлов: 0 добавлений и 10 удалений

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

@ -375,7 +375,6 @@ var snapshotFormatters = {
: localizedMsg(["apzNone"]));
addRowFromKey("features", "webglRenderer");
addRowFromKey("features", "webgl2Renderer");
addRowFromKey("features", "supportsHardwareH264", "hardwareH264");
addRowFromKey("features", "currentAudioBackend", "audioBackend");
addRowFromKey("features", "direct2DEnabled", "#Direct2D");

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

@ -352,12 +352,6 @@ var dataProviders = {
let winUtils = Services.wm.getMostRecentWindow("").
QueryInterface(Ci.nsIInterfaceRequestor).
getInterface(Ci.nsIDOMWindowUtils)
data.supportsHardwareH264 = "Unknown";
let promise = winUtils.supportsHardwareH264Decoding;
promise.then(function(v) {
data.supportsHardwareH264 = v;
});
promises.push(promise);
data.currentAudioBackend = winUtils.currentAudioBackend;

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

@ -225,9 +225,6 @@ const SNAPSHOT_SCHEMA = {
windowLayerManagerRemote: {
type: "boolean",
},
supportsHardwareH264: {
type: "string",
},
currentAudioBackend: {
type: "string",
},