Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1163)

Unified Diff: media/video/capture/file_video_capture_device.cc

Issue 83793004: Implement IPCs and VideoCapture::Client interfaces for texture capture (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 16cf3941 Rebase, comment. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/video/capture/file_video_capture_device.cc
diff --git a/media/video/capture/file_video_capture_device.cc b/media/video/capture/file_video_capture_device.cc
index e1c4f5216f76d656128590fcc90d9f5a6f17f356..7ed8493fa7dd6ad0ef14a064feea05cf544c3840 100644
--- a/media/video/capture/file_video_capture_device.cc
+++ b/media/video/capture/file_video_capture_device.cc
@@ -284,11 +284,11 @@ void FileVideoCaptureDevice::OnCaptureTask() {
}
// Give the captured frame to the client.
- client_->OnIncomingCapturedFrame(video_frame_.get(),
- frame_size_,
- base::TimeTicks::Now(),
- 0,
- capture_format_);
+ client_->OnIncomingCapturedData(video_frame_.get(),
+ frame_size_,
+ capture_format_,
+ 0,
+ base::TimeTicks::Now());
// Reschedule next CaptureTask.
base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698