| 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_MOCK_MEDIA_STREAM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ | 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "content/renderer/media/media_stream_impl.h" | 11 #include "content/renderer/media/media_stream_impl.h" |
| 12 | 12 |
| 13 class MockMediaStreamImpl : public MediaStreamImpl { | 13 class MockMediaStreamImpl : public MediaStreamImpl { |
| 14 public: | 14 public: |
| 15 MockMediaStreamImpl(); | 15 MockMediaStreamImpl(); |
| 16 virtual ~MockMediaStreamImpl(); | |
| 17 | 16 |
| 18 virtual WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( | 17 virtual WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( |
| 19 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE; | 18 WebKit::WebPeerConnectionHandlerClient* client) OVERRIDE; |
| 20 virtual void ClosePeerConnection() OVERRIDE; | 19 virtual void ClosePeerConnection() OVERRIDE; |
| 21 virtual webrtc::MediaStreamTrackInterface* GetLocalMediaStreamTrack( | 20 virtual webrtc::MediaStreamTrackInterface* GetLocalMediaStreamTrack( |
| 22 const std::string& label) OVERRIDE; | 21 const std::string& label) OVERRIDE; |
| 23 | 22 |
| 24 // Implement webkit_glue::MediaStreamClient. | 23 // Implement webkit_glue::MediaStreamClient. |
| 25 virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder( | 24 virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder( |
| 26 const GURL& url, | 25 const GURL& url, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 38 int index) OVERRIDE; | 37 int index) OVERRIDE; |
| 39 virtual void OnAudioDeviceFailed( | 38 virtual void OnAudioDeviceFailed( |
| 40 const std::string& label, | 39 const std::string& label, |
| 41 int index) OVERRIDE; | 40 int index) OVERRIDE; |
| 42 | 41 |
| 43 void AddTrack( | 42 void AddTrack( |
| 44 const std::string& label, | 43 const std::string& label, |
| 45 webrtc::MediaStreamTrackInterface* track); | 44 webrtc::MediaStreamTrackInterface* track); |
| 46 | 45 |
| 47 private: | 46 private: |
| 47 virtual ~MockMediaStreamImpl(); |
| 48 |
| 48 typedef std::map<std::string, webrtc::MediaStreamTrackInterface*> | 49 typedef std::map<std::string, webrtc::MediaStreamTrackInterface*> |
| 49 MockMediaStreamTrackPtrMap; | 50 MockMediaStreamTrackPtrMap; |
| 50 MockMediaStreamTrackPtrMap mock_local_tracks_; | 51 MockMediaStreamTrackPtrMap mock_local_tracks_; |
| 51 | 52 |
| 52 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamImpl); | 53 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamImpl); |
| 53 }; | 54 }; |
| 54 | 55 |
| 55 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ | 56 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ |
| OLD | NEW |