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

Unified Diff: content/browser/renderer_host/media/media_capture_devices_impl.h

Issue 183743021: Implement MediaCaptureDevices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try again Created 6 years, 9 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/media_capture_devices_impl.h
diff --git a/content/browser/renderer_host/media/media_capture_devices_impl.h b/content/browser/renderer_host/media/media_capture_devices_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..078f659608b734ab82e87a8edef0eb7e3a06b964
--- /dev/null
+++ b/content/browser/renderer_host/media/media_capture_devices_impl.h
@@ -0,0 +1,49 @@
+// Copyright 2014 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.
+
+#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H
+#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H
+
+#include "base/memory/singleton.h"
+#include "content/public/browser/media_capture_devices.h"
+
+namespace content {
+
+class MediaCaptureDevicesImpl : public MediaCaptureDevices {
+ public:
+ static MediaCaptureDevicesImpl* GetInstance();
+
+ // Overriden from MediaCaptureDevices
+ virtual const MediaStreamDevices& GetAudioCaptureDevices() OVERRIDE;
+ virtual const MediaStreamDevices& GetVideoCaptureDevices() OVERRIDE;
+
+ // Called by MediaStreamManager to notify the change of media capture
+ // devices, these 2 methods are called in IO thread.
+ void OnAudioCaptureDevicesChanged(const MediaStreamDevices& devices);
+ void OnVideoCaptureDevicesChanged(const MediaStreamDevices& devices);
+
+ private:
+ friend struct DefaultSingletonTraits<MediaCaptureDevicesImpl>;
+ MediaCaptureDevicesImpl();
+ virtual ~MediaCaptureDevicesImpl();
+
+ void UpdateAudioDevicesOnUIThread(const content::MediaStreamDevices& devices);
+ void UpdateVideoDevicesOnUIThread(const content::MediaStreamDevices& devices);
+
+ // Flag to indicate if device enumeration has been done/doing.
+ // Only accessed on UI thread.
+ bool devices_enumerated_;
+
+ // A list of cached audio capture devices.
+ MediaStreamDevices audio_devices_;
+
+ // A list of cached video capture devices.
+ MediaStreamDevices video_devices_;
+
+ DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_MEDIA_CAPTURE_DEVICES_H
« no previous file with comments | « content/browser/media/media_devices_monitor.cc ('k') | content/browser/renderer_host/media/media_capture_devices_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698