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

Unified Diff: content/common/media/video_capture_messages.h

Issue 2400443006: VideoCapture: moar VideoCapture renderer-->host messages to mojo, part 3 (Closed)
Patch Set: minor rebase Created 4 years, 2 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
« no previous file with comments | « content/browser/renderer_host/media/video_capture_host.cc ('k') | content/common/video_capture.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/media/video_capture_messages.h
diff --git a/content/common/media/video_capture_messages.h b/content/common/media/video_capture_messages.h
index da63ca1461efae71e983ef7dbc3b17a9c51c43d8..ad90637b4086cb8f56df4f85988833d96b5e1557 100644
--- a/content/common/media/video_capture_messages.h
+++ b/content/common/media/video_capture_messages.h
@@ -66,18 +66,6 @@ IPC_MESSAGE_CONTROL2(VideoCaptureMsg_FreeBuffer,
IPC_MESSAGE_CONTROL1(VideoCaptureMsg_BufferReady,
VideoCaptureMsg_BufferReady_Params)
-// Notify the renderer about a device's supported formats; this is a response
-// to a VideoCaptureHostMsg_GetDeviceSupportedFormats request.
-IPC_MESSAGE_CONTROL2(VideoCaptureMsg_DeviceSupportedFormatsEnumerated,
- int /* device_id */,
- media::VideoCaptureFormats /* supported_formats */)
-
-// Notify the renderer about a device's format(s) in use; this is a response
-// to a VideoCaptureHostMsg_GetDeviceFormatInUse request.
-IPC_MESSAGE_CONTROL2(VideoCaptureMsg_DeviceFormatsInUseReceived,
- int /* device_id */,
- media::VideoCaptureFormats /* formats_in_use */)
-
// Tell the browser process that the renderer has finished reading from
// a buffer previously delivered by VideoCaptureMsg_BufferReady.
IPC_MESSAGE_CONTROL4(VideoCaptureHostMsg_BufferReady,
@@ -85,13 +73,3 @@ IPC_MESSAGE_CONTROL4(VideoCaptureHostMsg_BufferReady,
int /* buffer_id */,
gpu::SyncToken /* sync_token */,
double /* consumer_resource_utilization */)
-
-// Get the formats supported by a device referenced by |capture_session_id|.
-IPC_MESSAGE_CONTROL2(VideoCaptureHostMsg_GetDeviceSupportedFormats,
- int /* device_id */,
- media::VideoCaptureSessionId /* session_id */)
-
-// Get the format(s) in use by a device referenced by |capture_session_id|.
-IPC_MESSAGE_CONTROL2(VideoCaptureHostMsg_GetDeviceFormatsInUse,
- int /* device_id */,
- media::VideoCaptureSessionId /* session_id */)
« no previous file with comments | « content/browser/renderer_host/media/video_capture_host.cc ('k') | content/common/video_capture.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698