Searched refs:muted (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/mac/
H A DMediaPlayerProxy.h101 - (void)_setMuted:(BOOL)muted;
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DFullscreenVideoControllerEfl.h63 bool muted() const;
H A DFullscreenVideoControllerEfl.cpp123 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFullscreenVideoController.h65 bool muted() const;
H A DFullscreenVideoController.cpp407 bool FullscreenVideoController::muted() const function in class:FullscreenVideoController
409 return m_mediaElement ? m_mediaElement->muted() : false;
433 gtk_scale_button_set_value(GTK_SCALE_BUTTON(m_volumeButton), muted() ? 0 : volume());
/external/webkit/Source/WebCore/html/
H A DHTMLMediaElement.idl77 attribute boolean muted;
H A DHTMLMediaElement.cpp1577 bool HTMLMediaElement::muted() const function in class:WebCore::HTMLMediaElement
1582 void HTMLMediaElement::setMuted(bool muted) argument
1584 LOG(Media, "HTMLMediaElement::setMuted(%s)", boolString(muted));
1586 if (m_muted != muted) {
1587 m_muted = muted;
1960 setMuted(m_player->muted());
2228 // Set rate, muted before calling play in case they were set before the media engine was setup.
2229 // The media engine should just stash the rate and muted values since it isn't already playing.
H A DHTMLMediaElement.h144 bool muted() const;
/external/webkit/Source/WebCore/platform/graphics/
H A DMediaPlayer.cpp531 bool MediaPlayer::muted() const function in class:WebCore::MediaPlayer
536 void MediaPlayer::setMuted(bool muted) argument
538 m_muted = muted;
541 m_private->setMuted(muted);
543 m_private->setVolume(muted ? 0 : m_volume);
H A DMediaPlayer.h236 bool muted() const;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivateQt.cpp249 m_mediaPlayer->setMuted(element->muted());
401 void MediaPlayerPrivateQt::setMuted(bool muted) argument
403 m_mediaPlayer->setMuted(muted);
475 void MediaPlayerPrivateQt::mutedChanged(bool muted) argument
477 m_webCorePlayer->muteChanged(muted);
H A DMediaPlayerPrivatePhonon.cpp345 void MediaPlayerPrivatePhonon::setMuted(bool muted) argument
348 m_audioOutput->setMuted(muted);
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcall.h72 bool muted() const { return muted_; } function in class:cricket::Call
H A Dchannel.h144 bool muted() const { return muted_; } function in class:cricket::BaseChannel
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp1370 void MediaPlayerPrivateGStreamer::setMuted(bool muted) argument
1375 g_object_set(m_playBin, "mute", muted, NULL);
1385 gboolean muted;
1386 g_object_get(m_playBin, "mute", &muted, NULL);
1387 m_player->muteChanged(static_cast<bool>(muted));
1658 g_object_set(m_playBin, "mute", m_player->muted(), NULL);
/external/webkit/Source/WebCore/rendering/
H A DHitTestResult.cpp447 return mediaElt->muted();
456 mediaElt->setMuted(!mediaElt->muted());
H A DRenderMediaControlsChromium.cpp84 return paintMediaButton(paintInfo.context, rect, mediaElement->muted() ? soundNone: soundFull);
H A DRenderThemeWinCE.cpp560 bool muted = !mediaElement || mediaElement->muted(); local
575 if (muted)
/external/webkit/Source/WebKit/chromium/src/
H A DContextMenuClientImpl.cpp199 if (mediaElement->muted())
/external/webkit/Source/WebCore/html/shadow/
H A DMediaControlElements.cpp330 mediaElement()->setMuted(!mediaElement()->muted());
344 setDisplayType(mediaElement()->muted() ? MediaUnMuteButton : MediaMuteButton);
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.cpp81 const char* icons[] = { "audio-volume-high", "audio-volume-muted" };
503 return paintMediaButton(renderObject, paintInfo.context, rect, mediaElement->muted() ? "audio-volume-muted" : "audio-volume-high");
/external/webkit/Source/WebKit/mac/WebView/
H A DWebVideoFullscreenHUDWindowController.mm539 if ([_delegate mediaElement]->muted())
/external/webkit/Source/WebCore/platform/efl/
H A DRenderThemeEfl.cpp1116 if (!emitMediaButtonSignal(MuteUnMuteButton, mediaElement->muted() ? MediaMuteButton : MediaUnMuteButton, rect))
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.cpp1260 p.painter->setBrush(mediaElement->muted() ? Qt::darkRed : getMediaControlForegroundColor(o));

Completed in 411 milliseconds