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_CENTER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "content/common/media/media_stream_options.h" | 13 #include "content/common/media/media_stream_options.h" |
14 #include "content/public/renderer/render_process_observer.h" | 14 #include "content/public/renderer/render_process_observer.h" |
15 #include "third_party/WebKit/public/platform/WebMediaStream.h" | 15 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
16 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" | 16 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
17 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" | 17 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
18 #include "third_party/WebKit/public/platform/WebMediaStreamTrackSourcesRequest.h
" | 18 #include "third_party/WebKit/public/platform/WebMediaStreamTrackSourcesRequest.h
" |
19 | 19 |
20 namespace blink { | 20 namespace blink { |
21 class WebAudioSourceProvider; | 21 class WebAudioSourceProvider; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl. | 62 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl. |
63 // It is valid as long as RenderThreadImpl exist. | 63 // It is valid as long as RenderThreadImpl exist. |
64 PeerConnectionDependencyFactory* rtc_factory_; | 64 PeerConnectionDependencyFactory* rtc_factory_; |
65 | 65 |
66 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); | 66 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); |
67 }; | 67 }; |
68 | 68 |
69 } // namespace content | 69 } // namespace content |
70 | 70 |
71 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 71 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
OLD | NEW |