| 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 CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ |
| 6 #define CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; | 196 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; |
| 197 | 197 |
| 198 std::unique_ptr<DesktopStreamsRegistry> desktop_streams_registry_; | 198 std::unique_ptr<DesktopStreamsRegistry> desktop_streams_registry_; |
| 199 | 199 |
| 200 // Handlers for processing media access requests. | 200 // Handlers for processing media access requests. |
| 201 ScopedVector<MediaAccessHandler> media_access_handlers_; | 201 ScopedVector<MediaAccessHandler> media_access_handlers_; |
| 202 | 202 |
| 203 DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesDispatcher); | 203 DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesDispatcher); |
| 204 }; | 204 }; |
| 205 | 205 |
| 206 #endif // CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ | 206 #endif // CHROME_BROWSER_MEDIA_WEBRTC_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ |
| OLD | NEW |