| 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 double rate() const OVERRIDE; | |
| 98 virtual void setRate(double) OVERRIDE; | |
| 99 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE; | 97 virtual WebCore::MediaPlayer::NetworkState networkState() const OVERRIDE; |
| 100 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE; | 98 virtual WebCore::MediaPlayer::ReadyState readyState() const OVERRIDE; |
| 101 virtual double maxTimeSeekable() const OVERRIDE; | |
| 102 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const OVERRIDE; | |
| 103 virtual bool didLoadingProgress() const OVERRIDE; | |
| 104 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR
IDE; | 99 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect&) OVERR
IDE; |
| 105 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo
rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul
tiplyAlpha, bool flipY) OVERRIDE; | 100 virtual bool copyVideoTextureToPlatformTexture(WebGraphicsContext3D*, Platfo
rm3DObject texture, GLint level, GLenum type, GLenum internalFormat, bool premul
tiplyAlpha, bool flipY) OVERRIDE; |
| 106 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE; | 101 virtual void setPreload(WebCore::MediaPlayer::Preload) OVERRIDE; |
| 107 | 102 |
| 108 #if ENABLE(WEB_AUDIO) | 103 #if ENABLE(WEB_AUDIO) |
| 109 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE; | 104 virtual WebCore::AudioSourceProvider* audioSourceProvider() OVERRIDE; |
| 110 #endif | 105 #endif |
| 111 | 106 |
| 112 private: | 107 private: |
| 113 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*); | 108 explicit WebMediaPlayerClientImpl(WebCore::MediaPlayerClient*); |
| 114 | 109 |
| 115 WebCore::HTMLMediaElement& mediaElement() const; | 110 WebCore::HTMLMediaElement& mediaElement() const; |
| 116 | 111 |
| 117 WebCore::MediaPlayerClient* m_client; | 112 WebCore::MediaPlayerClient* m_client; |
| 118 OwnPtr<WebMediaPlayer> m_webMediaPlayer; | 113 OwnPtr<WebMediaPlayer> m_webMediaPlayer; |
| 119 WebCore::MediaPlayer::Preload m_preload; | 114 WebCore::MediaPlayer::Preload m_preload; |
| 120 double m_rate; | |
| 121 | 115 |
| 122 #if OS(ANDROID) | 116 #if OS(ANDROID) |
| 123 // FIXME: This path "only works" on Android. It is a workaround for the prob
lem that Skia could not handle Android's GL_TEXTURE_EXTERNAL_OES | 117 // FIXME: This path "only works" on Android. It is a workaround for the prob
lem that Skia could not handle Android's GL_TEXTURE_EXTERNAL_OES |
| 124 // texture internally. It should be removed and replaced by the normal paint
path. | 118 // texture internally. It should be removed and replaced by the normal paint
path. |
| 125 // https://code.google.com/p/skia/issues/detail?id=1189 | 119 // https://code.google.com/p/skia/issues/detail?id=1189 |
| 126 void paintOnAndroid(WebCore::GraphicsContext*, const WebCore::IntRect&, uint
8_t alpha); | 120 void paintOnAndroid(WebCore::GraphicsContext*, const WebCore::IntRect&, uint
8_t alpha); |
| 127 SkBitmap m_bitmap; | 121 SkBitmap m_bitmap; |
| 128 bool m_usePaintOnAndroid; | 122 bool m_usePaintOnAndroid; |
| 129 #endif | 123 #endif |
| 130 | 124 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 Mutex provideInputLock; | 167 Mutex provideInputLock; |
| 174 }; | 168 }; |
| 175 | 169 |
| 176 AudioSourceProviderImpl m_audioSourceProvider; | 170 AudioSourceProviderImpl m_audioSourceProvider; |
| 177 #endif | 171 #endif |
| 178 }; | 172 }; |
| 179 | 173 |
| 180 } // namespace blink | 174 } // namespace blink |
| 181 | 175 |
| 182 #endif | 176 #endif |
| OLD | NEW |