summaryrefslogtreecommitdiffstats
path: root/Source/WebKit
diff options
context:
space:
mode:
authorTeng-Hui Zhu <ztenghui@google.com>2012-07-20 14:03:14 -0700
committerTeng-Hui Zhu <ztenghui@google.com>2012-07-24 10:38:44 -0700
commit9abcc8af97ee9c535e4d0995b564471b3866f9e4 (patch)
tree635e8469027a0efdc0781abe616943c3f433d2f7 /Source/WebKit
parentad46784d9075ff6d1e11cd2be47a6169761b0eeb (diff)
downloadexternal_webkit-9abcc8af97ee9c535e4d0995b564471b3866f9e4.zip
external_webkit-9abcc8af97ee9c535e4d0995b564471b3866f9e4.tar.gz
external_webkit-9abcc8af97ee9c535e4d0995b564471b3866f9e4.tar.bz2
Support autoplay attribute for media element, with optional gesture requirement.
bug:6806306 Change-Id: I09a7494278be5631d64d125390559058682386d1
Diffstat (limited to 'Source/WebKit')
-rw-r--r--Source/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp b/Source/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp
index c01d916..409eff6 100644
--- a/Source/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp
+++ b/Source/WebKit/android/WebCoreSupport/MediaPlayerPrivateAndroid.cpp
@@ -315,6 +315,13 @@ public:
m_naturalSize = IntSize(poster->width(), poster->height());
m_player->sizeChanged();
}
+ // At this time, we know that the proxy has been setup. And it is the
+ // right time to trigger autoplay through the HTMLMediaElement state
+ // change. Since we are using the java MediaPlayer, so we have to
+ // pretend that the MediaPlayer has enough data.
+ m_readyState = MediaPlayer::HaveEnoughData;
+ m_player->readyStateChanged();
+
}
void onPrepared(int duration, int width, int height)