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

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

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
Index: content/browser/renderer_host/media/video_capture_host.cc
diff --git a/content/browser/renderer_host/media/video_capture_host.cc b/content/browser/renderer_host/media/video_capture_host.cc
index 6863275a69b70be2c2b23638f76e80debc345d94..e0c1a2c3ce3922768b34ec518c76b40a5b3e054f 100644
--- a/content/browser/renderer_host/media/video_capture_host.cc
+++ b/content/browser/renderer_host/media/video_capture_host.cc
@@ -144,10 +144,6 @@ bool VideoCaptureHost::OnMessageReceived(const IPC::Message& message) {
IPC_BEGIN_MESSAGE_MAP(VideoCaptureHost, message)
IPC_MESSAGE_HANDLER(VideoCaptureHostMsg_BufferReady,
OnRendererFinishedWithBuffer)
- IPC_MESSAGE_HANDLER(VideoCaptureHostMsg_GetDeviceSupportedFormats,
- OnGetDeviceSupportedFormats)
- IPC_MESSAGE_HANDLER(VideoCaptureHostMsg_GetDeviceFormatsInUse,
- OnGetDeviceFormatsInUse)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
@@ -172,38 +168,6 @@ void VideoCaptureHost::OnRendererFinishedWithBuffer(
}
}
-void VideoCaptureHost::OnGetDeviceSupportedFormats(
- int device_id,
- media::VideoCaptureSessionId session_id) {
- DVLOG(1) << __func__ << " " << device_id;
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
- media::VideoCaptureFormats device_supported_formats;
- if (!media_stream_manager_->video_capture_manager()
- ->GetDeviceSupportedFormats(session_id,
- &device_supported_formats)) {
- DLOG(WARNING)
- << "Could not retrieve device supported formats for device_id="
- << device_id << " session_id=" << session_id;
- }
- Send(new VideoCaptureMsg_DeviceSupportedFormatsEnumerated(
- device_id, device_supported_formats));
-}
-
-void VideoCaptureHost::OnGetDeviceFormatsInUse(
- int device_id,
- media::VideoCaptureSessionId session_id) {
- DVLOG(1) << __func__ << " " << device_id;
- DCHECK_CURRENTLY_ON(BrowserThread::IO);
- media::VideoCaptureFormats formats_in_use;
- if (!media_stream_manager_->video_capture_manager()->GetDeviceFormatsInUse(
- session_id, &formats_in_use)) {
- DVLOG(1) << "Could not retrieve device format(s) in use for device_id="
- << device_id << " session_id=" << session_id;
- }
- Send(new VideoCaptureMsg_DeviceFormatsInUseReceived(device_id,
- formats_in_use));
-}
-
void VideoCaptureHost::Start(int32_t device_id,
int32_t session_id,
const media::VideoCaptureParams& params) {
@@ -285,6 +249,34 @@ void VideoCaptureHost::RequestRefreshFrame(int32_t device_id) {
}
}
+void VideoCaptureHost::GetDeviceSupportedFormats(
+ int32_t device_id,
+ int32_t session_id,
+ const GetDeviceSupportedFormatsCallback& callback) {
+ DVLOG(1) << __func__ << " " << device_id;
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ media::VideoCaptureFormats supported_formats;
+ if (!media_stream_manager_->video_capture_manager()
+ ->GetDeviceSupportedFormats(session_id, &supported_formats)) {
+ DLOG(WARNING) << "Could not retrieve device supported formats";
+ }
+ callback.Run(supported_formats);
+}
+
+void VideoCaptureHost::GetDeviceFormatsInUse(
+ int32_t device_id,
+ int32_t session_id,
+ const GetDeviceFormatsInUseCallback& callback) {
+ DVLOG(1) << __func__ << " " << device_id;
+ DCHECK_CURRENTLY_ON(BrowserThread::IO);
+ media::VideoCaptureFormats formats_in_use;
+ if (!media_stream_manager_->video_capture_manager()->GetDeviceFormatsInUse(
+ session_id, &formats_in_use)) {
+ DLOG(WARNING) << "Could not retrieve device format(s) in use";
+ }
+ callback.Run(formats_in_use);
+}
+
void VideoCaptureHost::OnControllerAdded(
int device_id,
const base::WeakPtr<VideoCaptureController>& controller) {
« no previous file with comments | « content/browser/renderer_host/media/video_capture_host.h ('k') | content/common/media/video_capture_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698