Index: content/renderer/media/android/webmediaplayer_android.cc |
diff --git a/content/renderer/media/android/webmediaplayer_android.cc b/content/renderer/media/android/webmediaplayer_android.cc |
index 2f71dcb621f3f95aa11bcdccdb9cc1ef84f476ee..ec905d872b038cf6124c13f7da505c77ec877fc5 100644 |
--- a/content/renderer/media/android/webmediaplayer_android.cc |
+++ b/content/renderer/media/android/webmediaplayer_android.cc |
@@ -1271,6 +1271,12 @@ void WebMediaPlayerAndroid::SetCurrentFrameInternal( |
current_frame_ = video_frame; |
} |
+bool WebMediaPlayerAndroid::Render(base::TimeTicks deadline_min, |
+ base::TimeTicks deadline_max) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
scoped_refptr<media::VideoFrame> WebMediaPlayerAndroid::GetCurrentFrame() { |
scoped_refptr<VideoFrame> video_frame; |
{ |
@@ -1281,8 +1287,10 @@ scoped_refptr<media::VideoFrame> WebMediaPlayerAndroid::GetCurrentFrame() { |
return video_frame; |
} |
-void WebMediaPlayerAndroid::PutCurrentFrame( |
- const scoped_refptr<media::VideoFrame>& frame) { |
+void WebMediaPlayerAndroid::PutCurrentFrame() { |
+} |
+ |
+void WebMediaPlayerAndroid::SetVisible(bool visible) { |
} |
void WebMediaPlayerAndroid::ResetStreamTextureProxy() { |