| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_REGISTRY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_REGISTRY_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_REGISTRY_H_ | 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_REGISTRY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "content/renderer/media/media_stream_registry_interface.h" | 10 #include "content/renderer/media/media_stream_registry_interface.h" |
| 11 | 11 |
| 12 namespace blink { |
| 13 class WebMediaConstraints; |
| 14 } |
| 15 |
| 12 namespace content { | 16 namespace content { |
| 13 | 17 |
| 14 // This class encapsulates creation of a Blink MediaStream having inside the | 18 // This class encapsulates creation of a Blink MediaStream having inside the |
| 15 // necessary Blink and Chromium, track and source. The Chrome Video source is | 19 // necessary Blink and Chromium, track and source. The Chrome Video source is |
| 16 // a mock. | 20 // a mock. |
| 17 class MockMediaStreamRegistry final : public MediaStreamRegistryInterface { | 21 class MockMediaStreamRegistry final : public MediaStreamRegistryInterface { |
| 18 public: | 22 public: |
| 19 MockMediaStreamRegistry(); | 23 MockMediaStreamRegistry(); |
| 20 | 24 |
| 21 void Init(const std::string& stream_url); | 25 void Init(const std::string& stream_url); |
| 26 void AddVideoTrack(const std::string& track_id, |
| 27 const blink::WebMediaConstraints& constraints); |
| 22 void AddVideoTrack(const std::string& track_id); | 28 void AddVideoTrack(const std::string& track_id); |
| 23 void AddAudioTrack(const std::string& track_id); | 29 void AddAudioTrack(const std::string& track_id); |
| 24 blink::WebMediaStream GetMediaStream(const std::string& url) override; | 30 blink::WebMediaStream GetMediaStream(const std::string& url) override; |
| 25 | 31 |
| 26 const blink::WebMediaStream test_stream() const { return test_stream_; } | 32 const blink::WebMediaStream test_stream() const { return test_stream_; } |
| 27 | 33 |
| 28 void reset() { | 34 void reset() { |
| 29 test_stream_.reset(); | 35 test_stream_.reset(); |
| 30 } | 36 } |
| 31 | 37 |
| 32 private: | 38 private: |
| 33 blink::WebMediaStream test_stream_; | 39 blink::WebMediaStream test_stream_; |
| 34 std::string stream_url_; | 40 std::string stream_url_; |
| 35 }; | 41 }; |
| 36 | 42 |
| 37 } // namespace content | 43 } // namespace content |
| 38 | 44 |
| 39 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_REGISTRY_H_ | 45 #endif // CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_REGISTRY_H_ |
| OLD | NEW |