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

Unified Diff: content/browser/renderer_host/media/video_capture_host.h

Issue 1157193002: RESOURCE_UTILIZATION in VideoFrameMetadata, a consumer feedback signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@video_frame_done_callback
Patch Set: Addressed hubbe's round 2 comments, and REBASE. Created 5 years, 6 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/video_capture_host.h
diff --git a/content/browser/renderer_host/media/video_capture_host.h b/content/browser/renderer_host/media/video_capture_host.h
index eb845dc62c01c19e54df8931d9702a739e29381f..52d77927ecab9bb690ad143a0d3314ad42960cf9 100644
--- a/content/browser/renderer_host/media/video_capture_host.h
+++ b/content/browser/renderer_host/media/video_capture_host.h
@@ -131,9 +131,12 @@ class CONTENT_EXPORT VideoCaptureHost
media::VideoCaptureSessionId session_id,
const media::VideoCaptureParams& params);
- // IPC message: Receive an empty buffer from renderer. Send it to device
- // referenced by |device_id|.
- void OnReceiveEmptyBuffer(int device_id, int buffer_id, uint32 sync_point);
+ // IPC message: Called when a renderer is finished using a buffer. Notifies
+ // the controller.
+ void OnRendererFinishedWithBuffer(int device_id,
+ int buffer_id,
+ uint32 sync_point,
+ double consumer_resource_utilization);
// IPC message: Get supported formats referenced by |capture_session_id|.
// |device_id| is needed for message back-routing purposes.

Powered by Google App Engine
This is Rietveld 408576698