HomeSort by relevance Sort by last modified time
    Searched defs:canPlay (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderMediaControls.cpp 131 bool canPlay = btn->displayType() == MediaPlayButton;
132 wkDrawMediaUIPart(canPlay ? WKMediaUIPartPlayButton : WKMediaUIPartPauseButton, themeStyle, paintInfo.context->platformContext(), r, determineState(o));
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FullscreenVideoControllerEfl.cpp 91 bool FullscreenVideoController::canPlay() const
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FullscreenVideoController.cpp 363 bool FullscreenVideoController::canPlay() const
365 return m_mediaElement && m_mediaElement->canPlay();
388 if (canPlay())
396 if (canPlay())
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 319 bool FullscreenVideoController::canPlay() const
321 return m_mediaElement && m_mediaElement->canPlay();
446 m_playPauseButton.setShowAltButton(!canPlay());
450 if (!canPlay())
695 if (canPlay())
700 m_playPauseButton.setShowAltButton(!canPlay());
704 if (!canPlay())
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp 490 String canPlay;
496 canPlay = "";
499 canPlay = "maybe";
502 canPlay = "probably";
506 LOG(Media, "HTMLMediaElement::canPlayType(%s) -> %s", mimeType.utf8().data(), canPlay.utf8().data());
508 return canPlay;
    [all...]

Completed in 73 milliseconds