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

Unified Diff: content/browser/renderer_host/media/web_contents_video_capture_device.cc

Issue 24079003: Add VideoCaptureDevice::GetDeviceSupportedFormats to interface + implementation for Linux and Fake (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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/browser/renderer_host/media/web_contents_video_capture_device.cc
diff --git a/content/browser/renderer_host/media/web_contents_video_capture_device.cc b/content/browser/renderer_host/media/web_contents_video_capture_device.cc
index b807d83c54df6c15bb00a032d3591b2eee6363f3..d9c07c6a764a1f66f4c6a7ef0c1842e627470159 100644
--- a/content/browser/renderer_host/media/web_contents_video_capture_device.cc
+++ b/content/browser/renderer_host/media/web_contents_video_capture_device.cc
@@ -1270,6 +1270,12 @@ void WebContentsVideoCaptureDevice::DeAllocate() {
impl_->DeAllocate();
}
+void WebContentsVideoCaptureDevice::GetDeviceSupportedFormats(
+ const std::string& device_name,
+ media::VideoCaptureFormats* capture_formats) {
+ NOTIMPLEMENTED();
+}
+
const media::VideoCaptureDevice::Name&
WebContentsVideoCaptureDevice::device_name() {
return device_name_;

Powered by Google App Engine
This is Rietveld 408576698