| Index: content/browser/media/media_internals.h
|
| diff --git a/content/browser/media/media_internals.h b/content/browser/media/media_internals.h
|
| index 1e6379363dfbc1ec70e871d28056b865bc9b0fa3..3eafcbad0f8caa1bfd5b9223468f7806c4ad625b 100644
|
| --- a/content/browser/media/media_internals.h
|
| +++ b/content/browser/media/media_internals.h
|
| @@ -47,6 +47,11 @@ class CONTENT_EXPORT MediaInternals
|
| // Sends all audio cached data to each registered UpdateCallback.
|
| void SendAudioStreamData();
|
|
|
| + // TODO(burnik): Update comment.
|
| + // Sends all video capture capabilities cached data to each registered
|
| + // UpdateCallback.
|
| + void SendVideoCaptureCapabilities();
|
| +
|
| // Called to inform of the capabilities enumerated for video devices.
|
| void UpdateVideoCaptureDeviceCapabilities(
|
| const media::VideoCaptureDeviceInfos& video_capture_device_infos);
|
| @@ -83,6 +88,7 @@ class CONTENT_EXPORT MediaInternals
|
| // All variables below must be accessed under |lock_|.
|
| base::Lock lock_;
|
| base::DictionaryValue audio_streams_cached_data_;
|
| + base::ListValue video_capture_capabilities_cached_data_;
|
| int owner_ids_[AUDIO_COMPONENT_MAX];
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MediaInternals);
|
|
|