Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(931)

Unified Diff: Source/core/html/HTMLMediaElement.cpp

Issue 444173002: Let the effective media volume be 0 if the media element is muted (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLMediaElement.cpp
diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
index 86ec6ffd1cbf01b7fa3a9448b3b356fe1b01e574..879fecbdafd51ac767f5acd5d6333521d834998c 100644
--- a/Source/core/html/HTMLMediaElement.cpp
+++ b/Source/core/html/HTMLMediaElement.cpp
@@ -3287,15 +3287,20 @@ void HTMLMediaElement::updateVolume()
double HTMLMediaElement::playerVolume() const
{
- double volumeMultiplier = 1;
- bool shouldMute = m_muted;
+ // Spec reference: http://whatwg.org/c#effective-media-volume
- if (m_mediaController) {
- volumeMultiplier *= m_mediaController->volume();
- shouldMute = m_mediaController->muted();
acolwell GONE FROM CHROMIUM 2014/08/06 23:51:05 So is the bug here then? IIUC the media controller
philipj_slow 2014/08/07 07:34:23 Precisely, the media element's and the media contr
- }
+ if (m_muted)
+ return 0;
+
+ if (m_mediaController && m_mediaController->muted())
+ return 0;
+
+ double volume = m_volume;
+
+ if (m_mediaController)
+ volume *= m_mediaController->volume();
- return shouldMute ? 0 : m_volume * volumeMultiplier;
+ return volume;
}
void HTMLMediaElement::updatePlayState()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698