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 a8188bd77a49452769d6976661c21222d12efd3e..b0356239bcc53aea080289538232aa15b0de0f6a 100644 |
--- a/content/renderer/media/android/webmediaplayer_android.cc |
+++ b/content/renderer/media/android/webmediaplayer_android.cc |
@@ -1272,6 +1272,12 @@ void WebMediaPlayerAndroid::SetCurrentFrameInternal( |
current_frame_ = video_frame; |
} |
+bool WebMediaPlayerAndroid::UpdateCurrentFrame(base::TimeTicks deadline_min, |
+ base::TimeTicks deadline_max) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
scoped_refptr<media::VideoFrame> WebMediaPlayerAndroid::GetCurrentFrame() { |
scoped_refptr<VideoFrame> video_frame; |
{ |
@@ -1282,8 +1288,7 @@ scoped_refptr<media::VideoFrame> WebMediaPlayerAndroid::GetCurrentFrame() { |
return video_frame; |
} |
-void WebMediaPlayerAndroid::PutCurrentFrame( |
- const scoped_refptr<media::VideoFrame>& frame) { |
+void WebMediaPlayerAndroid::PutCurrentFrame() { |
} |
void WebMediaPlayerAndroid::ResetStreamTextureProxy() { |