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

Unified Diff: content/browser/renderer_host/media/video_capture_host.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 | « no previous file | content/browser/renderer_host/media/video_capture_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d4e94b1cfb48364e84b9e7cd711c65d01495de3d..e83cbc7f671df69f1ce4c2c206fd0a685078a4de 100644
--- a/content/browser/renderer_host/media/video_capture_host.h
+++ b/content/browser/renderer_host/media/video_capture_host.h
@@ -114,11 +114,6 @@ class CONTENT_EXPORT VideoCaptureHost
int buffer_id,
const gpu::SyncToken& sync_token,
double consumer_resource_utilization);
- void OnGetDeviceSupportedFormats(
- int device_id,
- media::VideoCaptureSessionId capture_session_id);
- void OnGetDeviceFormatsInUse(int device_id,
- media::VideoCaptureSessionId capture_session_id);
// mojom::VideoCaptureHost implementation
void Start(int32_t device_id,
@@ -130,6 +125,14 @@ class CONTENT_EXPORT VideoCaptureHost
int32_t session_id,
const media::VideoCaptureParams& params) override;
void RequestRefreshFrame(int32_t device_id) override;
+ void GetDeviceSupportedFormats(
+ int32_t device_id,
+ int32_t session_id,
+ const GetDeviceSupportedFormatsCallback& callback) override;
+ void GetDeviceFormatsInUse(
+ int32_t device_id,
+ int32_t session_id,
+ const GetDeviceFormatsInUseCallback& callback) override;
void OnControllerAdded(
int device_id,
« no previous file with comments | « no previous file | content/browser/renderer_host/media/video_capture_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698