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

Unified Diff: content/browser/renderer_host/media/service_video_capture_provider.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, 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/service_video_capture_provider.cc
diff --git a/content/browser/renderer_host/media/service_video_capture_provider.cc b/content/browser/renderer_host/media/service_video_capture_provider.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e4a550444ee95d4fdc5552458765068cbf83be87
--- /dev/null
+++ b/content/browser/renderer_host/media/service_video_capture_provider.cc
@@ -0,0 +1,69 @@
+// 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/service_video_capture_provider.h"
+
+#include "content/browser/renderer_host/media/service_video_capture_device_launcher.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/common/service_manager_connection.h"
+#include "services/service_manager/public/cpp/connector.h"
+#include "services/video_capture/public/interfaces/constants.mojom.h"
+
+namespace content {
+
+ServiceVideoCaptureProvider::ServiceVideoCaptureProvider() {
+ thread_checker_.DetachFromThread();
+ DCHECK(BrowserThread::CurrentlyOn(content::BrowserThread::UI));
+ connector_ =
+ ServiceManagerConnection::GetForProcess()->GetConnector()->Clone();
+}
+
+ServiceVideoCaptureProvider::~ServiceVideoCaptureProvider() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+}
+
+void ServiceVideoCaptureProvider::Uninitialize() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ device_factory_.reset();
+ device_factory_provider_.reset();
+}
+
+void ServiceVideoCaptureProvider::GetDeviceInfosAsync(
+ const base::Callback<void(
+ const std::vector<media::VideoCaptureDeviceInfo>&)>& result_callback) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ LazyConnectToService();
+ device_factory_->GetDeviceInfos(result_callback);
+}
+
+std::unique_ptr<VideoCaptureDeviceLauncher>
+ServiceVideoCaptureProvider::CreateDeviceLauncher() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ LazyConnectToService();
+ return base::MakeUnique<ServiceVideoCaptureDeviceLauncher>(&device_factory_);
+}
+
+void ServiceVideoCaptureProvider::LazyConnectToService() {
+ if (device_factory_provider_.is_bound())
+ return;
+
+ connector_->BindInterface(video_capture::mojom::kServiceName,
+ &device_factory_provider_);
+ device_factory_provider_->ConnectToDeviceFactory(
+ mojo::MakeRequest(&device_factory_));
+ // Unretained |this| is safe, because |this| owns |device_factory_|.
+ device_factory_.set_connection_error_handler(
+ base::Bind(&ServiceVideoCaptureProvider::OnLostConnectionToDeviceFactory,
+ base::Unretained(this)));
+}
+
+void ServiceVideoCaptureProvider::OnLostConnectionToDeviceFactory() {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ // This may indicate that the video capture service has crashed. Uninitialize
+ // here, so that a new connection will be established when clients try to
+ // reconnect.
+ Uninitialize();
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698