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

Unified Diff: content/browser/renderer_host/media/desktop_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: 0b8d3c0b Updated. Created 6 years, 11 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: content/browser/renderer_host/media/desktop_capture_device.cc
diff --git a/content/browser/renderer_host/media/desktop_capture_device.cc b/content/browser/renderer_host/media/desktop_capture_device.cc
index 7c78df06969de8547908f02cd8290eefd369b7d1..4bdea3a86dcbbba1371a7da39615187dc3ee000e 100644
--- a/content/browser/renderer_host/media/desktop_capture_device.cc
+++ b/content/browser/renderer_host/media/desktop_capture_device.cc
@@ -232,8 +232,8 @@ void DesktopCaptureDevice::Core::OnCaptureCompleted(
output_data = output_frame_->data();
}
- client_->OnIncomingCapturedFrame(
- output_data, output_bytes, base::TimeTicks::Now(), 0, capture_format_);
+ client_->OnIncomingCapturedData(
+ output_data, output_bytes, capture_format_, 0, base::TimeTicks::Now());
}
void DesktopCaptureDevice::Core::DoAllocateAndStart(

Powered by Google App Engine
This is Rietveld 408576698