Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: content/renderer/media/mock_media_stream_dispatcher.h

Issue 8060055: Adding support for MediaStream and PeerConnection functionality (Closed) Base URL: http://git.chromium.org/chromium/chromium.git@trunk
Patch Set: Adding render view files again, can't split CL Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_;
scherkus (not reviewing) 2011/10/31 01:59:13 nit: even though this is a mock class it should st
Henrik Grunell 2011/10/31 13:17:53 Done.
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698