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

Unified Diff: content/renderer/media/video_capture_message_filter.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
Index: content/renderer/media/video_capture_message_filter.h
diff --git a/content/renderer/media/video_capture_message_filter.h b/content/renderer/media/video_capture_message_filter.h
index 1e0f8f7ffba5ea75b4f52ba84fda0a8ba66ea28c..e3d0336239ae449e4c462ccd56824cfdd32dca93 100644
--- a/content/renderer/media/video_capture_message_filter.h
+++ b/content/renderer/media/video_capture_message_filter.h
@@ -60,14 +60,6 @@ class CONTENT_EXPORT VideoCaptureMessageFilter : public IPC::MessageFilter {
// process.
virtual void OnStateChanged(VideoCaptureState state) = 0;
- // Called upon reception of device's supported formats back from browser.
- virtual void OnDeviceSupportedFormatsEnumerated(
- const media::VideoCaptureFormats& supported_formats) = 0;
-
- // Called upon reception of format(s) in use by a device back from browser.
- virtual void OnDeviceFormatsInUseReceived(
- const media::VideoCaptureFormats& formats_in_use) = 0;
-
// Called when the delegate has been added to filter's delegate list.
// |device_id| is the device id for the delegate.
virtual void OnDelegateAdded(int32_t device_id) = 0;
@@ -124,16 +116,6 @@ class CONTENT_EXPORT VideoCaptureMessageFilter : public IPC::MessageFilter {
// State of browser process' video capture device has changed.
void OnDeviceStateChanged(int device_id, VideoCaptureState state);
- // Receive a device's supported formats back from browser process.
- void OnDeviceSupportedFormatsEnumerated(
- int device_id,
- const media::VideoCaptureFormats& supported_formats);
-
- // Receive the formats in-use by a device back from browser process.
- void OnDeviceFormatsInUseReceived(
- int device_id,
- const media::VideoCaptureFormats& formats_in_use);
-
// Finds the delegate associated with |device_id|, NULL if not found.
Delegate* find_delegate(int device_id) const;
« no previous file with comments | « content/renderer/media/video_capture_impl_unittest.cc ('k') | content/renderer/media/video_capture_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698