| 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 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 const StreamDeviceInfoArray& audio_array, | 116 const StreamDeviceInfoArray& audio_array, |
| 117 const StreamDeviceInfoArray& video_array); | 117 const StreamDeviceInfoArray& video_array); |
| 118 void OnStreamGenerationFailed( | 118 void OnStreamGenerationFailed( |
| 119 int request_id, | 119 int request_id, |
| 120 content::MediaStreamRequestResult result); | 120 content::MediaStreamRequestResult result); |
| 121 void OnDeviceStopped(const std::string& label, | 121 void OnDeviceStopped(const std::string& label, |
| 122 const StreamDeviceInfo& device_info); | 122 const StreamDeviceInfo& device_info); |
| 123 void OnDevicesEnumerated( | 123 void OnDevicesEnumerated( |
| 124 int request_id, | 124 int request_id, |
| 125 const StreamDeviceInfoArray& device_array); | 125 const StreamDeviceInfoArray& device_array); |
| 126 void OnDevicesEnumerationFailed(int request_id); | |
| 127 void OnDeviceOpened( | 126 void OnDeviceOpened( |
| 128 int request_id, | 127 int request_id, |
| 129 const std::string& label, | 128 const std::string& label, |
| 130 const StreamDeviceInfo& device_info); | 129 const StreamDeviceInfo& device_info); |
| 131 void OnDeviceOpenFailed(int request_id); | 130 void OnDeviceOpenFailed(int request_id); |
| 132 | 131 |
| 133 // Used for DCHECKs so methods calls won't execute in the wrong thread. | 132 // Used for DCHECKs so methods calls won't execute in the wrong thread. |
| 134 scoped_refptr<base::MessageLoopProxy> main_loop_; | 133 scoped_refptr<base::MessageLoopProxy> main_loop_; |
| 135 | 134 |
| 136 int next_ipc_id_; | 135 int next_ipc_id_; |
| 137 typedef std::map<std::string, Stream> LabelStreamMap; | 136 typedef std::map<std::string, Stream> LabelStreamMap; |
| 138 LabelStreamMap label_stream_map_; | 137 LabelStreamMap label_stream_map_; |
| 139 | 138 |
| 140 // List of calls made to the browser process that have not yet completed or | 139 // List of calls made to the browser process that have not yet completed or |
| 141 // been canceled. | 140 // been canceled. |
| 142 typedef std::list<Request> RequestList; | 141 typedef std::list<Request> RequestList; |
| 143 RequestList requests_; | 142 RequestList requests_; |
| 144 | 143 |
| 145 DISALLOW_COPY_AND_ASSIGN(MediaStreamDispatcher); | 144 DISALLOW_COPY_AND_ASSIGN(MediaStreamDispatcher); |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace content | 147 } // namespace content |
| 149 | 148 |
| 150 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ | 149 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DISPATCHER_H_ |
| OLD | NEW |