diff options
author | Andrei Popescu <andreip@google.com> | 2009-09-28 16:20:09 +0100 |
---|---|---|
committer | Andrei Popescu <andreip@google.com> | 2009-09-30 20:13:22 +0100 |
commit | 2b3d345465fdf225609499ffc5b1732157cafa22 (patch) | |
tree | 5b4d267c6550902107f26212337d00b8dd6aa920 /WebCore/html/HTMLMediaElement.h | |
parent | 14e3d9bdf2270d399bae78946e3efe62a6c6c373 (diff) | |
download | external_webkit-2b3d345465fdf225609499ffc5b1732157cafa22.zip external_webkit-2b3d345465fdf225609499ffc5b1732157cafa22.tar.gz external_webkit-2b3d345465fdf225609499ffc5b1732157cafa22.tar.bz2 |
Update <video> implementation after new IRC discussion with Eric Carlsson.
- move poster drawing on the WebKit side
- get rid of the child views
- add prepareToPlay method to the MediaPlayer iface.
Fixes http://b/issue?id=2156592
Diffstat (limited to 'WebCore/html/HTMLMediaElement.h')
-rw-r--r-- | WebCore/html/HTMLMediaElement.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/html/HTMLMediaElement.h b/WebCore/html/HTMLMediaElement.h index 27b48ea..70b686e 100644 --- a/WebCore/html/HTMLMediaElement.h +++ b/WebCore/html/HTMLMediaElement.h @@ -227,6 +227,9 @@ private: bool endedPlayback() const; bool stoppedDueToErrors() const; bool pausedForUserInteraction() const; +#if PLATFORM(ANDROID) + bool couldPlayIfEnoughData() const; +#endif float minTimeSeekable() const; float maxTimeSeekable() const; |