Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ | |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "content/renderer/media/media_stream_impl.h" | |
| 11 | |
| 12 class MockMediaStreamImpl : public MediaStreamImpl { | |
| 13 public: | |
| 14 MockMediaStreamImpl(); | |
| 15 virtual ~MockMediaStreamImpl(); | |
| 16 | |
| 17 virtual WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( | |
| 18 WebKit::WebPeerConnectionHandlerClient* client); | |
| 19 virtual void ClosePeerConnection(); | |
| 20 // Returns true if created successfully or already exists, false otherwise. | |
| 21 virtual bool SetVideoCaptureModule(const std::string& label); | |
| 22 | |
| 23 // Implement webkit_glue::MediaStreamClient. | |
| 24 virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder( | |
| 25 const GURL& url, | |
| 26 media::MessageLoopFactory* message_loop_factory) OVERRIDE; | |
| 27 | |
| 28 // Implement MediaStreamDispatcherEventHandler. | |
| 29 virtual void OnStreamGenerated( | |
| 30 int request_id, | |
| 31 const std::string& label, | |
| 32 const media_stream::StreamDeviceInfoArray& audio_array, | |
| 33 const media_stream::StreamDeviceInfoArray& video_array) OVERRIDE; | |
| 34 virtual void OnStreamGenerationFailed(int request_id) OVERRIDE; | |
| 35 virtual void OnVideoDeviceFailed( | |
|
scherkus (not reviewing)
2011/11/23 22:52:04
80 chars here too if they fit
Henrik Grunell
2011/11/24 11:32:59
Nope. 81.
| |
| 36 const std::string& label, | |
| 37 int index) OVERRIDE; | |
| 38 virtual void OnAudioDeviceFailed( | |
| 39 const std::string& label, | |
| 40 int index) OVERRIDE; | |
| 41 | |
| 42 const std::string& video_label() const { return video_label_; } | |
| 43 | |
| 44 private: | |
| 45 std::string video_label_; | |
| 46 | |
| 47 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamImpl); | |
| 48 }; | |
| 49 | |
| 50 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_IMPL_H_ | |
| OLD | NEW |