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_DISPATCHER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DISPATCHER_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "content/renderer/media/media_stream_dispatcher.h" |
| 11 |
| 12 // This class is a mock implementation of MediaStreamDispatcher. |
| 13 class MockMediaStreamDispatcher : public MediaStreamDispatcher { |
| 14 public: |
| 15 MockMediaStreamDispatcher(); |
| 16 virtual ~MockMediaStreamDispatcher(); |
| 17 |
| 18 virtual void GenerateStream(int request_id, |
| 19 MediaStreamDispatcherEventHandler* event_handler, |
| 20 media_stream::StreamOptions components, |
| 21 const std::string& security_origin) OVERRIDE; |
| 22 virtual void StopStream(const std::string& label) OVERRIDE; |
| 23 virtual bool IsStream(const std::string& label) OVERRIDE; |
| 24 virtual int video_session_id(const std::string& label, int index) OVERRIDE; |
| 25 virtual int audio_session_id(const std::string& label, int index) OVERRIDE; |
| 26 |
| 27 int request_id_; |
| 28 MediaStreamDispatcherEventHandler* event_handler_; |
| 29 media_stream::StreamOptions* components_; |
| 30 std::string security_origin_; |
| 31 |
| 32 private: |
| 33 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDispatcher); |
| 34 }; |
| 35 |
| 36 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DISPATCHER_H_ |
OLD | NEW |