| Index: content/renderer/media/pepper_to_video_track_adapter.cc
|
| diff --git a/content/renderer/media/pepper_to_video_track_adapter.cc b/content/renderer/media/pepper_to_video_track_adapter.cc
|
| index 104bd010da5748c17d44dba91bd325fdf7706d7c..b40dca8b8bf66266ef982bbf0b53a31abe5fcc0e 100644
|
| --- a/content/renderer/media/pepper_to_video_track_adapter.cc
|
| +++ b/content/renderer/media/pepper_to_video_track_adapter.cc
|
| @@ -46,11 +46,6 @@ class PpFrameWriter : public MediaStreamVideoSource,
|
|
|
| protected:
|
| // MediaStreamVideoSource implementation.
|
| - void GetCurrentSupportedFormats(
|
| - int max_requested_width,
|
| - int max_requested_height,
|
| - double max_requested_frame_rate,
|
| - const VideoCaptureDeviceFormatsCB& callback) override;
|
| void StartSourceImpl(
|
| const media::VideoCaptureFormat& format,
|
| const blink::WebMediaConstraints& constraints,
|
| @@ -116,19 +111,6 @@ PpFrameWriter::~PpFrameWriter() {
|
| DVLOG(3) << "PpFrameWriter dtor";
|
| }
|
|
|
| -void PpFrameWriter::GetCurrentSupportedFormats(
|
| - int max_requested_width,
|
| - int max_requested_height,
|
| - double max_requested_frame_rate,
|
| - const VideoCaptureDeviceFormatsCB& callback) {
|
| - DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
|
| - DVLOG(3) << "PpFrameWriter::GetCurrentSupportedFormats()";
|
| - // Since the input is free to change the resolution at any point in time
|
| - // the supported formats are unknown.
|
| - media::VideoCaptureFormats formats;
|
| - callback.Run(formats);
|
| -}
|
| -
|
| void PpFrameWriter::StartSourceImpl(
|
| const media::VideoCaptureFormat& format,
|
| const blink::WebMediaConstraints& constraints,
|
|
|