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

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

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 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_SERVICE_VIDEO_CAPTURE_DEVICE_LAUNCHE R_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_SERVICE_VIDEO_CAPTURE_DEVICE_LAUNCHE R_H_
7
8 #include "content/browser/renderer_host/media/video_capture_provider.h"
9 #include "content/public/common/media_stream_request.h"
10 #include "services/video_capture/public/interfaces/device_factory.mojom.h"
11
12 namespace content {
13
14 // Implementation of VideoCaptureDeviceLauncher that uses the "video_capture"
15 // service.
16 class ServiceVideoCaptureDeviceLauncher : public VideoCaptureDeviceLauncher {
17 public:
18 explicit ServiceVideoCaptureDeviceLauncher(
19 video_capture::mojom::DeviceFactoryPtr* device_factory);
20 ~ServiceVideoCaptureDeviceLauncher() override;
21
22 // VideoCaptureDeviceLauncher implementation.
23 void LaunchDeviceAsync(const std::string& device_id,
24 MediaStreamType stream_type,
25 const media::VideoCaptureParams& params,
26 base::WeakPtr<media::VideoFrameReceiver> receiver,
27 Callbacks* callbacks,
28 base::OnceClosure done_cb) override;
29 void AbortLaunch() override;
30
31 void OnUtilizationReport(int frame_feedback_id, double utilization);
32
33 private:
34 video_capture::mojom::DeviceFactoryPtr* const device_factory_;
35 };
36
37 } // namespace content
38
39 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_SERVICE_VIDEO_CAPTURE_DEVICE_LAUN CHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698