summaryrefslogtreecommitdiffstats
path: root/Source/WebKit
diff options
context:
space:
mode:
authorTeng-Hui Zhu <ztenghui@google.com>2012-07-24 17:10:29 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-07-24 17:22:09 -0700
commitab49bbea6d85b1c1c6b26c66f402091724712349 (patch)
treecef0abebc1ffb2e19db050509ac657fdbbd6432d /Source/WebKit
parentb8cdff9b468cd73ace9ac43eb56b990c25c608bf (diff)
parent9abcc8af97ee9c535e4d0995b564471b3866f9e4 (diff)
downloadexternal_webkit-ab49bbea6d85b1c1c6b26c66f402091724712349.zip
external_webkit-ab49bbea6d85b1c1c6b26c66f402091724712349.tar.gz
external_webkit-ab49bbea6d85b1c1c6b26c66f402091724712349.tar.bz2
Merge "Support autoplay attribute for media element, with optional gesture requirement."
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)