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

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

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
6 #define CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ 6 #define CHROME_BROWSER_MEDIA_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 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/scoped_vector.h" 15 #include "base/memory/scoped_vector.h"
15 #include "base/memory/singleton.h" 16 #include "base/memory/singleton.h"
16 #include "base/observer_list.h" 17 #include "base/observer_list.h"
17 #include "content/public/browser/media_observer.h" 18 #include "content/public/browser/media_observer.h"
18 #include "content/public/browser/web_contents_delegate.h" 19 #include "content/public/browser/web_contents_delegate.h"
19 #include "content/public/common/media_stream_request.h" 20 #include "content/public/common/media_stream_request.h"
20 21
21 class DesktopStreamsRegistry; 22 class DesktopStreamsRegistry;
22 class MediaAccessHandler; 23 class MediaAccessHandler;
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 183
183 scoped_ptr<DesktopStreamsRegistry> desktop_streams_registry_; 184 scoped_ptr<DesktopStreamsRegistry> desktop_streams_registry_;
184 185
185 // Handlers for processing media access requests. 186 // Handlers for processing media access requests.
186 ScopedVector<MediaAccessHandler> media_access_handlers_; 187 ScopedVector<MediaAccessHandler> media_access_handlers_;
187 188
188 DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesDispatcher); 189 DISALLOW_COPY_AND_ASSIGN(MediaCaptureDevicesDispatcher);
189 }; 190 };
190 191
191 #endif // CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_ 192 #endif // CHROME_BROWSER_MEDIA_MEDIA_CAPTURE_DEVICES_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698