| OLD | NEW |
| (Empty) |
| 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 | |
| 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() const { return request_id_; } | |
| 28 MediaStreamDispatcherEventHandler* event_handler() const { | |
| 29 return event_handler_; | |
| 30 } | |
| 31 media_stream::StreamOptions* components() const { return components_; } | |
| 32 const std::string& security_origin() const { return security_origin_; } | |
| 33 int stop_stream_counter() const { return stop_stream_counter_; } | |
| 34 | |
| 35 private: | |
| 36 int request_id_; | |
| 37 MediaStreamDispatcherEventHandler* event_handler_; | |
| 38 media_stream::StreamOptions* components_; | |
| 39 std::string security_origin_; | |
| 40 int stop_stream_counter_; | |
| 41 | |
| 42 DISALLOW_COPY_AND_ASSIGN(MockMediaStreamDispatcher); | |
| 43 }; | |
| 44 | |
| 45 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_DISPATCHER_H_ | |
| OLD | NEW |