| Index: content/browser/renderer_host/media/video_capture_manager.h
|
| diff --git a/content/browser/renderer_host/media/video_capture_manager.h b/content/browser/renderer_host/media/video_capture_manager.h
|
| index 74b4d30e9d87f5388d034406654c5b92f159af24..d48051d4145b43f71f51c233903e671c44595fda 100644
|
| --- a/content/browser/renderer_host/media/video_capture_manager.h
|
| +++ b/content/browser/renderer_host/media/video_capture_manager.h
|
| @@ -133,19 +133,8 @@ class CONTENT_EXPORT VideoCaptureManager : public MediaStreamProvider {
|
| private:
|
| virtual ~VideoCaptureManager();
|
| struct DeviceEntry;
|
| -
|
| - // This data structure is a convenient wrap of a devices' name and associated
|
| - // video capture supported formats.
|
| - struct DeviceInfo {
|
| - DeviceInfo();
|
| - DeviceInfo(const media::VideoCaptureDevice::Name& name,
|
| - const media::VideoCaptureFormats& supported_formats);
|
| - ~DeviceInfo();
|
| -
|
| - media::VideoCaptureDevice::Name name;
|
| - media::VideoCaptureFormats supported_formats;
|
| - };
|
| - typedef std::vector<DeviceInfo> DeviceInfos;
|
| + typedef media::VideoCaptureDevice::DeviceInfo DeviceInfo;
|
| + typedef media::VideoCaptureDevice::DeviceInfos DeviceInfos;
|
|
|
| // Checks to see if |entry| has no clients left on its controller. If so,
|
| // remove it from the list of devices, and delete it asynchronously. |entry|
|
|
|