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

Side by Side Diff: content/renderer/media/remote_media_stream_impl.h

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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 CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_H_
6 #define CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_H_ 6 #define CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_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 "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_vector.h" 11 #include "base/memory/scoped_vector.h"
12 #include "base/threading/non_thread_safe.h" 12 #include "base/threading/non_thread_safe.h"
13 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
14 #include "third_party/libjingle/source/talk/app/webrtc/mediastreaminterface.h" 14 #include "third_party/libjingle/source/talk/app/webrtc/mediastreaminterface.h"
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" 15 #include "third_party/WebKit/public/platform/WebMediaStream.h"
16 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamSourc e.h" 16 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
17 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStreamTrack .h" 17 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
18 18
19 namespace content { 19 namespace content {
20 20
21 class RemoteMediaStreamTrackObserver; 21 class RemoteMediaStreamTrackObserver;
22 22
23 // RemoteMediaStreamImpl serves as a container and glue between remote webrtc 23 // RemoteMediaStreamImpl serves as a container and glue between remote webrtc
24 // MediaStreams and WebKit MediaStreams. For each remote MediaStream received 24 // MediaStreams and WebKit MediaStreams. For each remote MediaStream received
25 // on a PeerConnection a RemoteMediaStreamImpl instance is created and 25 // on a PeerConnection a RemoteMediaStreamImpl instance is created and
26 // owned by RtcPeerConnection. 26 // owned by RtcPeerConnection.
27 class CONTENT_EXPORT RemoteMediaStreamImpl 27 class CONTENT_EXPORT RemoteMediaStreamImpl
(...skipping 14 matching lines...) Expand all
42 ScopedVector<RemoteMediaStreamTrackObserver> audio_track_observers_; 42 ScopedVector<RemoteMediaStreamTrackObserver> audio_track_observers_;
43 ScopedVector<RemoteMediaStreamTrackObserver> video_track_observers_; 43 ScopedVector<RemoteMediaStreamTrackObserver> video_track_observers_;
44 WebKit::WebMediaStream webkit_stream_; 44 WebKit::WebMediaStream webkit_stream_;
45 45
46 DISALLOW_COPY_AND_ASSIGN(RemoteMediaStreamImpl); 46 DISALLOW_COPY_AND_ASSIGN(RemoteMediaStreamImpl);
47 }; 47 };
48 48
49 } // namespace content 49 } // namespace content
50 50
51 #endif // CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_H_ 51 #endif // CONTENT_RENDERER_MEDIA_REMOTE_MEDIA_STREAM_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/peer_connection_tracker.cc ('k') | content/renderer/media/remote_media_stream_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698