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_INTERNALS_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ |
6 #define CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ | 6 #define CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
9 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
10 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
11 #include "base/values.h" | 13 #include "base/values.h" |
12 #include "content/public/browser/media_observer.h" | 14 #include "content/public/browser/media_observer.h" |
13 #include "content/public/common/media_stream_request.h" | 15 #include "content/public/common/media_stream_request.h" |
14 | 16 |
15 class MediaCaptureDevicesDispatcher; | 17 class MediaCaptureDevicesDispatcher; |
16 class MediaInternalsObserver; | 18 class MediaInternalsObserver; |
17 class MediaStreamCaptureIndicator; | 19 class MediaStreamCaptureIndicator; |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 98 |
97 DictionaryValue data_; | 99 DictionaryValue data_; |
98 ObserverList<MediaInternalsObserver> observers_; | 100 ObserverList<MediaInternalsObserver> observers_; |
99 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; | 101 scoped_refptr<MediaStreamCaptureIndicator> media_stream_capture_indicator_; |
100 scoped_refptr<MediaCaptureDevicesDispatcher> media_devices_dispatcher_; | 102 scoped_refptr<MediaCaptureDevicesDispatcher> media_devices_dispatcher_; |
101 | 103 |
102 DISALLOW_COPY_AND_ASSIGN(MediaInternals); | 104 DISALLOW_COPY_AND_ASSIGN(MediaInternals); |
103 }; | 105 }; |
104 | 106 |
105 #endif // CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ | 107 #endif // CHROME_BROWSER_MEDIA_MEDIA_INTERNALS_H_ |
OLD | NEW |