| 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" | 11 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
| 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamCente
r.h" | 12 #include "third_party/WebKit/public/platform/WebMediaStreamCenter.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack
.h" | 13 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
| 14 | 14 |
| 15 namespace WebKit { | 15 namespace WebKit { |
| 16 class WebMediaStreamCenterClient; | 16 class WebMediaStreamCenterClient; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace content { | 19 namespace content { |
| 20 class MediaStreamDependencyFactory; | 20 class MediaStreamDependencyFactory; |
| 21 | 21 |
| 22 class CONTENT_EXPORT MediaStreamCenter | 22 class CONTENT_EXPORT MediaStreamCenter |
| 23 : NON_EXPORTED_BASE(public WebKit::WebMediaStreamCenter) { | 23 : NON_EXPORTED_BASE(public WebKit::WebMediaStreamCenter) { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 54 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl. | 54 // |rtc_factory_| is a weak pointer and is owned by the RenderThreadImpl. |
| 55 // It is valid as long as RenderThreadImpl exist. | 55 // It is valid as long as RenderThreadImpl exist. |
| 56 MediaStreamDependencyFactory* rtc_factory_; | 56 MediaStreamDependencyFactory* rtc_factory_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); | 58 DISALLOW_COPY_AND_ASSIGN(MediaStreamCenter); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace content | 61 } // namespace content |
| 62 | 62 |
| 63 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ | 63 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CENTER_H_ |
| OLD | NEW |