| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 virtual void setWebLayer(WebLayer*) OVERRIDE; | 87 virtual void setWebLayer(WebLayer*) OVERRIDE; |
| 88 virtual void addTextTrack(WebInbandTextTrack*) OVERRIDE; | 88 virtual void addTextTrack(WebInbandTextTrack*) OVERRIDE; |
| 89 virtual void removeTextTrack(WebInbandTextTrack*) OVERRIDE; | 89 virtual void removeTextTrack(WebInbandTextTrack*) OVERRIDE; |
| 90 virtual void mediaSourceOpened(WebMediaSource*) OVERRIDE; | 90 virtual void mediaSourceOpened(WebMediaSource*) OVERRIDE; |
| 91 virtual void requestFullscreen() OVERRIDE; | 91 virtual void requestFullscreen() OVERRIDE; |
| 92 virtual void requestSeek(double) OVERRIDE; | 92 virtual void requestSeek(double) OVERRIDE; |
| 93 | 93 |
| 94 // MediaPlayer methods: | 94 // MediaPlayer methods: |
| 95 virtual WebMediaPlayer* webMediaPlayer() const OVERRIDE; | 95 virtual WebMediaPlayer* webMediaPlayer() const OVERRIDE; |
| 96 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia
Player::CORSMode) OVERRIDE; | 96 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia
Player::CORSMode) OVERRIDE; |
| 97 virtual void play() OVERRIDE; | |
| 98 virtual void pause() OVERRIDE; | |
| 99 virtual bool supportsSave() const OVERRIDE; | |
| 100 virtual double duration() const OVERRIDE; | 97 virtual double duration() const OVERRIDE; |
| 101 virtual double currentTime() const OVERRIDE; | 98 virtual double currentTime() const OVERRIDE; |
| 102 virtual void seek(double time) OVERRIDE; | 99 virtual void seek(double time) OVERRIDE; |
| 103 virtual bool seeking() const OVERRIDE; | 100 virtual bool seeking() const OVERRIDE; |
| 104 virtual double rate() const OVERRIDE; | 101 virtual double rate() const OVERRIDE; |
| 105 virtual void setRate(double) OVERRIDE; | 102 virtual void setRate(double) OVERRIDE; |
| 106 virtual bool paused() const OVERRIDE; | |
| 107 virtual void setPoster(const WebCore::KURL&) OVERRIDE; | 103 virtual void setPoster(const WebCore::KURL&) OVERRIDE; |
| 108 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE; | 104 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE; |
| 109 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE; | 105 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE; |
| 110 virtual double maxTimeSeekable() const OVERRIDE; | 106 virtual double maxTimeSeekable() const OVERRIDE; |
| 111 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const OVERRIDE; | 107 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const OVERRIDE; |
| 112 virtual bool didLoadingProgress() const OVERRIDE; | 108 virtual bool didLoadingProgress() const OVERRIDE; |
| 113 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR
IDE; | 109 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR
IDE; |
| 114 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo
rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul
tiplyAlpha, bool flipY) OVERRIDE; | 110 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo
rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul
tiplyAlpha, bool flipY) OVERRIDE; |
| 115 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE; | 111 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE; |
| 116 virtual bool hasSingleSecurityOrigin() const OVERRIDE; | |
| 117 virtual double mediaTimeForTimeValue(double timeValue) const OVERRIDE; | |
| 118 | 112 |
| 119 #if ENABLE(WEB_AUDIO) | 113 #if ENABLE(WEB_AUDIO) |
| 120 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE; | 114 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE; |
| 121 #endif | 115 #endif |
| 122 | 116 |
| 123 private: | 117 private: |
| 124 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*); | 118 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*); |
| 125 | 119 |
| 126 WebCore::HTMLMediaElement& mediaElement() const; | 120 WebCore::HTMLMediaElement& mediaElement() const; |
| 127 | 121 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 Mutex provideInputLock; | 178 Mutex provideInputLock; |
| 185 }; | 179 }; |
| 186 | 180 |
| 187 AudioSourceProviderImpl m_audioSourceProvider; | 181 AudioSourceProviderImpl m_audioSourceProvider; |
| 188 #endif | 182 #endif |
| 189 }; | 183 }; |
| 190 | 184 |
| 191 } // namespace blink | 185 } // namespace blink |
| 192 | 186 |
| 193 #endif | 187 #endif |
| OLD | NEW |