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

Unified Diff: services/video_capture/video_capture_device_factory_impl.cc

Issue 2224103002: Package video capture skeleton as Mojo Shell Service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@VideoMojoSkeleton2
Patch Set: ben's comments Created 4 years, 4 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: services/video_capture/video_capture_device_factory_impl.cc
diff --git a/services/video_capture/video_capture_device_factory_impl.cc b/services/video_capture/video_capture_device_factory_impl.cc
index 3bfcfbcf08983f6aa43f28e8dadc7efeb8447b80..045441537a9d483f907dcf02bf269efddd06a3df 100644
--- a/services/video_capture/video_capture_device_factory_impl.cc
+++ b/services/video_capture/video_capture_device_factory_impl.cc
@@ -9,7 +9,8 @@ namespace video_capture {
void VideoCaptureDeviceFactoryImpl::EnumerateDeviceDescriptors(
const EnumerateDeviceDescriptorsCallback& callback) {
- NOTIMPLEMENTED();
+ std::vector<mojom::VideoCaptureDeviceDescriptorPtr> empty_descriptors;
+ callback.Run(std::move(empty_descriptors));
}
void VideoCaptureDeviceFactoryImpl::GetSupportedFormats(
« no previous file with comments | « services/video_capture/service_unittest_manifest.json ('k') | services/video_capture/video_capture_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698