Home | History | Annotate | Download | only in html

Lines Matching refs:muted

2371 bool HTMLMediaElement::muted() const
2376 void HTMLMediaElement::setMuted(bool muted)
2378 WTF_LOG(Media, "HTMLMediaElement::setMuted(%p, %s)", this, boolString(muted));
2380 if (m_muted == muted)
2383 m_muted = muted;
2404 if (m_mediaController && m_mediaController->muted())
3369 // Set rate, muted before calling play in case they were set before the media engine was setup.
3370 // The media engine should just stash the rate and muted values since it isn't already playing.