Home | History | Annotate | Download | only in html

Lines Matching defs:muted

2388 bool HTMLMediaElement::muted() const
2393 void HTMLMediaElement::setMuted(bool muted)
2395 LOG(Media, "HTMLMediaElement::setMuted(%s)", boolString(muted));
2397 if (m_muted != muted) {
2398 m_muted = muted;
3326 shouldMute = m_mediaController->muted();
3362 // Set rate, muted before calling play in case they were set before the media engine was setup.
3363 // The media engine should just stash the rate and muted values since it isn't already playing.