Lines Matching defs:WebMediaPlayerClientImpl

6 #include "WebMediaPlayerClientImpl.h"
64 bool WebMediaPlayerClientImpl::m_isEnabled = false;
66 bool WebMediaPlayerClientImpl::isEnabled()
71 void WebMediaPlayerClientImpl::setIsEnabled(bool isEnabled)
76 void WebMediaPlayerClientImpl::registerSelf(MediaEngineRegistrar registrar)
79 registrar(WebMediaPlayerClientImpl::create,
80 WebMediaPlayerClientImpl::getSupportedTypes,
81 WebMediaPlayerClientImpl::supportsType,
88 WebMediaPlayerClientImpl* WebMediaPlayerClientImpl::fromMediaElement(const WebMediaElement* element)
91 return static_cast<WebMediaPlayerClientImpl*>(pm.media.chromiumMediaPlayer);
94 WebMediaPlayer* WebMediaPlayerClientImpl::mediaPlayer() const
101 WebMediaPlayerClientImpl::~WebMediaPlayerClientImpl()
111 void WebMediaPlayerClientImpl::networkStateChanged()
117 void WebMediaPlayerClientImpl::readyStateChanged()
127 void WebMediaPlayerClientImpl::volumeChanged(float newVolume)
133 void WebMediaPlayerClientImpl::muteChanged(bool newMute)
139 void WebMediaPlayerClientImpl::timeChanged()
145 void WebMediaPlayerClientImpl::repaint()
155 void WebMediaPlayerClientImpl::durationChanged()
161 void WebMediaPlayerClientImpl::rateChanged()
167 void WebMediaPlayerClientImpl::sizeChanged()
173 void WebMediaPlayerClientImpl::sawUnsupportedTracks()
179 float WebMediaPlayerClientImpl::volume() const
186 void WebMediaPlayerClientImpl::playbackStateChanged()
192 WebMediaPlayer::Preload WebMediaPlayerClientImpl::preload() const
201 void WebMediaPlayerClientImpl::load(const String& url)
219 void WebMediaPlayerClientImpl::loadInternal()
227 void WebMediaPlayerClientImpl::cancelLoad()
234 PlatformLayer* WebMediaPlayerClientImpl::platformLayer() const
241 PlatformMedia WebMediaPlayerClientImpl::platformMedia() const
245 pm.media.chromiumMediaPlayer = const_cast<WebMediaPlayerClientImpl*>(this);
249 void WebMediaPlayerClientImpl::play()
255 void WebMediaPlayerClientImpl::pause()
261 void WebMediaPlayerClientImpl::prepareToPlay()
267 IntSize WebMediaPlayerClientImpl::naturalSize() const
274 bool WebMediaPlayerClientImpl::hasVideo() const
281 bool WebMediaPlayerClientImpl::hasAudio() const
288 void WebMediaPlayerClientImpl::setVisible(bool visible)
294 float WebMediaPlayerClientImpl::duration() const
301 float WebMediaPlayerClientImpl::currentTime() const
308 void WebMediaPlayerClientImpl::seek(float time)
314 bool WebMediaPlayerClientImpl::seeking() const
321 void WebMediaPlayerClientImpl::setEndTime(float time)
327 void WebMediaPlayerClientImpl::setRate(float rate)
333 bool WebMediaPlayerClientImpl::paused() const
340 bool WebMediaPlayerClientImpl::supportsFullscreen() const
347 bool WebMediaPlayerClientImpl::supportsSave() const
354 void WebMediaPlayerClientImpl::setVolume(float volume)
360 MediaPlayer::NetworkState WebMediaPlayerClientImpl::networkState() const
367 MediaPlayer::ReadyState WebMediaPlayerClientImpl::readyState() const
374 float WebMediaPlayerClientImpl::maxTimeSeekable() const
381 PassRefPtr<TimeRanges> WebMediaPlayerClientImpl::buffered() const
395 int WebMediaPlayerClientImpl::dataRate() const
402 bool WebMediaPlayerClientImpl::totalBytesKnown() const
409 unsigned WebMediaPlayerClientImpl::totalBytes() const
416 unsigned WebMediaPlayerClientImpl::bytesLoaded() const
423 void WebMediaPlayerClientImpl::setSize(const IntSize& size)
429 void WebMediaPlayerClientImpl::paint(GraphicsContext* context, const IntRect& rect)
440 void WebMediaPlayerClientImpl::paintCurrentFrameInContext(GraphicsContext* context, const IntRect& rect)
463 void WebMediaPlayerClientImpl::setPreload(MediaPlayer::Preload preload)
474 bool WebMediaPlayerClientImpl::hasSingleSecurityOrigin() const
481 MediaPlayer::MovieLoadType WebMediaPlayerClientImpl::movieLoadType() const
489 unsigned WebMediaPlayerClientImpl::decodedFrameCount() const
496 unsigned WebMediaPlayerClientImpl::droppedFrameCount() const
503 unsigned WebMediaPlayerClientImpl::audioDecodedByteCount() const
510 unsigned WebMediaPlayerClientImpl::videoDecodedByteCount() const
518 bool WebMediaPlayerClientImpl::supportsAcceleratedRendering() const
523 bool WebMediaPlayerClientImpl::acceleratedRenderingInUse()
528 VideoFrameChromium* WebMediaPlayerClientImpl::getCurrentFrame()
539 void WebMediaPlayerClientImpl::putCurrentFrame(VideoFrameChromium* videoFrame)
551 MediaPlayerPrivateInterface* WebMediaPlayerClientImpl::create(MediaPlayer* player)
553 WebMediaPlayerClientImpl* client = new WebMediaPlayerClientImpl();
571 void WebMediaPlayerClientImpl::getSupportedTypes(HashSet<String>& supportedTypes)
573 // FIXME: integrate this list with WebMediaPlayerClientImpl::supportsType.
577 MediaPlayer::SupportsType WebMediaPlayerClientImpl::supportsType(const String& type,
596 void WebMediaPlayerClientImpl::startDelayedLoad()
606 WebMediaPlayerClientImpl::WebMediaPlayerClientImpl()