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

Side by Side 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, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/renderer_host/media/mojo_service_video_capture_device_ launcher.h"
6
7 namespace content {
8
9 MojoServiceVideoCaptureDeviceLauncher::MojoServiceVideoCaptureDeviceLauncher(
10 video_capture::mojom::DeviceFactoryPtr* device_factory)
11 : device_factory_(device_factory) {}
12
13 MojoServiceVideoCaptureDeviceLauncher::
14 ~MojoServiceVideoCaptureDeviceLauncher() {}
15
16 void MojoServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync(
17 const std::string& device_id,
18 MediaStreamType stream_type,
19 const media::VideoCaptureParams& params,
20 base::WeakPtr<media::VideoFrameReceiver> receiver,
21 Callbacks* callbacks,
22 base::OnceClosure done_cb) {
23 NOTIMPLEMENTED();
24 }
25
26 void MojoServiceVideoCaptureDeviceLauncher::AbortLaunch() {
27 NOTIMPLEMENTED();
28 }
29
30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698