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

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

Issue 2848973002: [Mojo Video Capture] Implement a VideoCaptureProvider using the Mojo service (part 1) (Closed)
Patch Set: Created 3 years, 8 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/mojo_service_video_capture_device_launcher.cc
diff --git a/content/browser/renderer_host/media/mojo_service_video_capture_device_launcher.cc b/content/browser/renderer_host/media/mojo_service_video_capture_device_launcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..171f7992753e7ecad2c0bd35e6452c7949b89791
--- /dev/null
+++ b/content/browser/renderer_host/media/mojo_service_video_capture_device_launcher.cc
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/renderer_host/media/mojo_service_video_capture_device_launcher.h"
+
+namespace content {
+
+MojoServiceVideoCaptureDeviceLauncher::MojoServiceVideoCaptureDeviceLauncher(
+ video_capture::mojom::DeviceFactoryPtr* device_factory)
+ : device_factory_(device_factory) {}
+
+MojoServiceVideoCaptureDeviceLauncher::
+ ~MojoServiceVideoCaptureDeviceLauncher() {}
+
+void MojoServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync(
+ const std::string& device_id,
+ MediaStreamType stream_type,
+ const media::VideoCaptureParams& params,
+ base::WeakPtr<media::VideoFrameReceiver> receiver,
+ Callbacks* callbacks,
+ base::OnceClosure done_cb) {
+ NOTIMPLEMENTED();
+}
+
+void MojoServiceVideoCaptureDeviceLauncher::AbortLaunch() {
+ NOTIMPLEMENTED();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698