OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // VideoCaptureHost serves video capture related messages from | 5 // VideoCaptureHost serves video capture related messages from |
6 // VideoCaptureMessageFilter which lives inside the render process. | 6 // VideoCaptureMessageFilter which lives inside the render process. |
7 // | 7 // |
8 // This class is owned by BrowserRenderProcessHost, and instantiated on UI | 8 // This class is owned by BrowserRenderProcessHost, and instantiated on UI |
9 // thread, but all other operations and method calls happen on IO thread. | 9 // thread, but all other operations and method calls happen on IO thread. |
10 // | 10 // |
(...skipping 28 matching lines...) Expand all Loading... |
39 #include <map> | 39 #include <map> |
40 | 40 |
41 #include "base/memory/ref_counted.h" | 41 #include "base/memory/ref_counted.h" |
42 #include "base/sequenced_task_runner_helpers.h" | 42 #include "base/sequenced_task_runner_helpers.h" |
43 #include "content/browser/renderer_host/media/video_capture_controller.h" | 43 #include "content/browser/renderer_host/media/video_capture_controller.h" |
44 #include "content/common/content_export.h" | 44 #include "content/common/content_export.h" |
45 #include "content/public/browser/browser_message_filter.h" | 45 #include "content/public/browser/browser_message_filter.h" |
46 #include "ipc/ipc_message.h" | 46 #include "ipc/ipc_message.h" |
47 | 47 |
48 namespace media { | 48 namespace media { |
49 struct VideoCaptureCapability; | 49 class VideoCaptureCapability; |
50 } | 50 } |
51 | 51 |
52 namespace content { | 52 namespace content { |
53 class MediaStreamManager; | 53 class MediaStreamManager; |
54 | 54 |
55 class CONTENT_EXPORT VideoCaptureHost | 55 class CONTENT_EXPORT VideoCaptureHost |
56 : public BrowserMessageFilter, | 56 : public BrowserMessageFilter, |
57 public VideoCaptureControllerEventHandler { | 57 public VideoCaptureControllerEventHandler { |
58 public: | 58 public: |
59 explicit VideoCaptureHost(MediaStreamManager* media_stream_manager); | 59 explicit VideoCaptureHost(MediaStreamManager* media_stream_manager); |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 typedef std::map<VideoCaptureControllerID, Entry*> EntryMap; | 152 typedef std::map<VideoCaptureControllerID, Entry*> EntryMap; |
153 // A map of VideoCaptureControllerID to its state and VideoCaptureController. | 153 // A map of VideoCaptureControllerID to its state and VideoCaptureController. |
154 EntryMap entries_; | 154 EntryMap entries_; |
155 | 155 |
156 DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); | 156 DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); |
157 }; | 157 }; |
158 | 158 |
159 } // namespace content | 159 } // namespace content |
160 | 160 |
161 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_HOST_H_ | 161 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_HOST_H_ |
OLD | NEW |