Fix build break
[chromium-blink-merge.git] / content / renderer / media / video_capture_impl_manager.h
blobc673960e4c68bea968bb1c862f4659f83ee1603a
1 // Copyright (c) 2012 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.
5 // VideoCaptureImplManager manages video capture devices in renderer process.
6 // The video capture clients use AddDevice() to get a pointer to
7 // video capture device. VideoCaputreImplManager supports multiple clients
8 // accessing same device.
10 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_
11 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_
13 #include <list>
14 #include <map>
16 #include "base/threading/thread.h"
17 #include "base/message_loop_proxy.h"
18 #include "base/synchronization/lock.h"
19 #include "content/common/content_export.h"
20 #include "media/video/capture/video_capture.h"
22 namespace content {
24 class VideoCaptureImpl;
25 class VideoCaptureMessageFilter;
27 class CONTENT_EXPORT VideoCaptureImplManager
28 : public base::RefCountedThreadSafe<VideoCaptureImplManager> {
29 public:
30 VideoCaptureImplManager();
32 // Called by video capture client |handler| to add device referenced
33 // by |id| to VideoCaptureImplManager's list of opened device list.
34 // A pointer to VideoCapture is returned to client so that client can
35 // operate on that pointer, such as StartCaptrue, StopCapture.
36 virtual media::VideoCapture* AddDevice(
37 media::VideoCaptureSessionId id,
38 media::VideoCapture::EventHandler* handler);
40 // Called by video capture client |handler| to remove device referenced
41 // by |id| from VideoCaptureImplManager's list of opened device list.
42 virtual void RemoveDevice(media::VideoCaptureSessionId id,
43 media::VideoCapture::EventHandler* handler);
45 // Make all existing VideoCaptureImpl instances stop/resume delivering
46 // video frames to their clients, depends on flag |suspend|.
47 virtual void SuspendDevices(bool suspend);
49 VideoCaptureMessageFilter* video_capture_message_filter() const {
50 return filter_;
53 protected:
54 virtual ~VideoCaptureImplManager();
56 private:
57 friend class base::RefCountedThreadSafe<VideoCaptureImplManager>;
59 struct Device {
60 Device(VideoCaptureImpl* device,
61 media::VideoCapture::EventHandler* handler);
62 ~Device();
64 VideoCaptureImpl* vc;
65 std::list<media::VideoCapture::EventHandler*> clients;
68 void FreeDevice(VideoCaptureImpl* vc);
70 typedef std::map<media::VideoCaptureSessionId, Device*> Devices;
71 Devices devices_;
72 base::Lock lock_;
73 scoped_refptr<VideoCaptureMessageFilter> filter_;
74 base::Thread thread_;
75 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
77 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager);
80 } // namespace content
82 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_