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