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

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

Issue 2390103002: Reland: VideoCapture: migrate VideoCapture renderer-->host messages to mojo, part 1 (Closed)
Patch Set: Sorted out tests after linker collision. 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/common/BUILD.gn ('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 4ff6f01d80dbb52cfcdbeb1b04cbe281832fd6d9..1c92066c252aa8bece70a61b065e0e446bbc1c84 100644
--- a/content/common/media/video_capture_messages.h
+++ b/content/common/media/video_capture_messages.h
@@ -72,7 +72,7 @@ IPC_MESSAGE_CONTROL2(VideoCaptureMsg_FreeBuffer,
int /* buffer_id */)
// Tell the renderer process that a Buffer is available from video capture, and
-// send the associated VideoFrame constituient parts as IPC parameters.
+// send the associated VideoFrame constituent parts as IPC parameters.
IPC_MESSAGE_CONTROL1(VideoCaptureMsg_BufferReady,
VideoCaptureMsg_BufferReady_Params)
@@ -95,10 +95,6 @@ IPC_MESSAGE_CONTROL3(VideoCaptureHostMsg_Start,
media::VideoCaptureSessionId, /* session_id */
media::VideoCaptureParams /* params */)
-// Pause the video capture specified by |device_id|.
-IPC_MESSAGE_CONTROL1(VideoCaptureHostMsg_Pause,
- int /* device_id */)
-
// Resume the video capture specified by |device_id|, |session_id| and
// |params|.
IPC_MESSAGE_CONTROL3(VideoCaptureHostMsg_Resume,
@@ -106,15 +102,6 @@ IPC_MESSAGE_CONTROL3(VideoCaptureHostMsg_Resume,
media::VideoCaptureSessionId, /* session_id */
media::VideoCaptureParams /* params */)
-// Requests that the video capturer send a frame "soon" (e.g., to resolve
-// picture loss or quality issues).
-IPC_MESSAGE_CONTROL1(VideoCaptureHostMsg_RequestRefreshFrame,
- int /* device_id */)
-
-// Close the video capture specified by |device_id|.
-IPC_MESSAGE_CONTROL1(VideoCaptureHostMsg_Stop,
- int /* device_id */)
-
// Tell the browser process that the renderer has finished reading from
// a buffer previously delivered by VideoCaptureMsg_BufferReady.
IPC_MESSAGE_CONTROL4(VideoCaptureHostMsg_BufferReady,
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/video_capture.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698