Bug 1678373 - Rename chrome-only telemetry counter attributes to distinguish audio and video. r=alwu,webidl,emilio

Differential Revision: https://phabricator.services.mozilla.com/D125083
This commit is contained in:
Paul Adenot
2021-10-07 15:44:53 +00:00
parent 39a2d0cc36
commit 03580ad5e7
6 changed files with 22 additions and 22 deletions

View File

@@ -2081,8 +2081,8 @@ bool HTMLMediaElement::IsVideoDecodingSuspended() const {
return mDecoder && mDecoder->IsVideoDecodingSuspended();
}
double HTMLMediaElement::TotalPlayTime() const {
return mDecoder ? mDecoder->GetTotalPlayTimeInSeconds() : -1.0;
double HTMLMediaElement::TotalVideoPlayTime() const {
return mDecoder ? mDecoder->GetTotalVideoPlayTimeInSeconds() : -1.0;
}
double HTMLMediaElement::VisiblePlayTime() const {