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

Side by Side Diff: content/browser/renderer_host/media/service_video_capture_device_launcher.cc

Issue 2848973002: [Mojo Video Capture] Implement a VideoCaptureProvider using the Mojo service (part 1) (Closed)
Patch Set: Incorporated mcasas@'s suggestions from PatchSet 3 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/service_video_capture_device_launc her.h"
6
7 namespace content {
8
9 ServiceVideoCaptureDeviceLauncher::ServiceVideoCaptureDeviceLauncher(
10 video_capture::mojom::DeviceFactoryPtr* device_factory)
11 : device_factory_(device_factory) {}
12
13 ServiceVideoCaptureDeviceLauncher::~ServiceVideoCaptureDeviceLauncher() {}
14
15 void ServiceVideoCaptureDeviceLauncher::LaunchDeviceAsync(
16 const std::string& device_id,
17 MediaStreamType stream_type,
18 const media::VideoCaptureParams& params,
19 base::WeakPtr<media::VideoFrameReceiver> receiver,
20 Callbacks* callbacks,
21 base::OnceClosure done_cb) {
22 NOTIMPLEMENTED();
23 }
24
25 void ServiceVideoCaptureDeviceLauncher::AbortLaunch() {
26 NOTIMPLEMENTED();
27 }
28
29 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698