| 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;
|
|
|
|
|