Bug 1272501 - Add Telemetry to the Blink/Webkit FileSystem API - part 2, r=smaug

This commit is contained in:
Andrea Marchesini 2016-06-28 18:02:30 +02:00
Родитель 93b1b8e92a
Коммит f181ac8328
2 изменённых файлов: 12 добавлений и 0 удалений

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

@ -1780,6 +1780,10 @@ HTMLInputElement::BeforeSetAttr(int32_t aNameSpaceID, nsIAtom* aName,
container->RadioRequiredWillChange(name, !!aValue);
}
}
if (aName == nsGkAtoms::webkitdirectory) {
Telemetry::Accumulate(Telemetry::WEBKIT_DIRECTORY_USED, true);
}
}
return nsGenericHTMLFormElementWithState::BeforeSetAttr(aNameSpaceID, aName,

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

@ -10906,5 +10906,13 @@
"bug_numbers": [1272501],
"releaseChannelCollection": "opt-out",
"description": "Webkit/Blink filesystem used"
},
"WEBKIT_DIRECTORY_USED": {
"alert_emails": ["amarchesini@mozilla.com"],
"expires_in_version": "never",
"kind": "boolean",
"bug_numbers": [1272501],
"releaseChannelCollection": "opt-out",
"description": "HTMLInputElement.webkitdirectory attribute used"
}
}