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 RenderProcessHostImpl, and instantiated on UI | 8 // This class is owned by RenderProcessHostImpl, 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 void DoControllerAddedOnIOThread( | 116 void DoControllerAddedOnIOThread( |
117 int device_id, | 117 int device_id, |
118 const base::WeakPtr<VideoCaptureController>& controller); | 118 const base::WeakPtr<VideoCaptureController>& controller); |
119 | 119 |
120 // IPC message: Stop capture on device referenced by |device_id|. | 120 // IPC message: Stop capture on device referenced by |device_id|. |
121 void OnStopCapture(int device_id); | 121 void OnStopCapture(int device_id); |
122 | 122 |
123 // IPC message: Pause capture on device referenced by |device_id|. | 123 // IPC message: Pause capture on device referenced by |device_id|. |
124 void OnPauseCapture(int device_id); | 124 void OnPauseCapture(int device_id); |
125 | 125 |
| 126 void OnResumeCapture(int device_id, |
| 127 media::VideoCaptureSessionId session_id, |
| 128 const media::VideoCaptureParams& params); |
| 129 |
126 // IPC message: Receive an empty buffer from renderer. Send it to device | 130 // IPC message: Receive an empty buffer from renderer. Send it to device |
127 // referenced by |device_id|. | 131 // referenced by |device_id|. |
128 void OnReceiveEmptyBuffer(int device_id, int buffer_id, uint32 sync_point); | 132 void OnReceiveEmptyBuffer(int device_id, int buffer_id, uint32 sync_point); |
129 | 133 |
130 // IPC message: Get supported formats referenced by |capture_session_id|. | 134 // IPC message: Get supported formats referenced by |capture_session_id|. |
131 // |device_id| is needed for message back-routing purposes. | 135 // |device_id| is needed for message back-routing purposes. |
132 void OnGetDeviceSupportedFormats( | 136 void OnGetDeviceSupportedFormats( |
133 int device_id, | 137 int device_id, |
134 media::VideoCaptureSessionId capture_session_id); | 138 media::VideoCaptureSessionId capture_session_id); |
135 | 139 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 // is connected. An entry in this map holds a null controller while it is in | 190 // is connected. An entry in this map holds a null controller while it is in |
187 // the process of starting. | 191 // the process of starting. |
188 EntryMap entries_; | 192 EntryMap entries_; |
189 | 193 |
190 DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); | 194 DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); |
191 }; | 195 }; |
192 | 196 |
193 } // namespace content | 197 } // namespace content |
194 | 198 |
195 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_HOST_H_ | 199 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_HOST_H_ |
OLD | NEW |