Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: chrome/browser/media/webrtc/media_capture_devices_dispatcher.h

Issue 2307083002: Cleanup: move WebRTC related files from chrome/browser/media to chrome/browser/media/webrtc/ (Closed)
Patch Set: Removed file wrongly resuscitated during rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698