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

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

Issue 432903002: Change a disabled MediaStreamVideoTrack to output black video frames for each incoming frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Tommis comments. Created 6 years, 4 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_VIDEO_SINK_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_VIDEO_SINK_H_
6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_VIDEO_SINK_H_ 6 #define CONTENT_RENDERER_MEDIA_MOCK_MEDIA_STREAM_VIDEO_SINK_H_
7 7
8 #include "content/public/renderer/media_stream_video_sink.h" 8 #include "content/public/renderer/media_stream_video_sink.h"
9 9
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 14 matching lines...) Expand all
25 25
26 // Triggered when OnVideoFrame(const scoped_refptr<media::VideoFrame>& frame) 26 // Triggered when OnVideoFrame(const scoped_refptr<media::VideoFrame>& frame)
27 // is called. 27 // is called.
28 MOCK_METHOD0(OnVideoFrame, void()); 28 MOCK_METHOD0(OnVideoFrame, void());
29 29
30 VideoCaptureDeliverFrameCB GetDeliverFrameCB(); 30 VideoCaptureDeliverFrameCB GetDeliverFrameCB();
31 31
32 int number_of_frames() const { return number_of_frames_; } 32 int number_of_frames() const { return number_of_frames_; }
33 media::VideoFrame::Format format() const { return format_; } 33 media::VideoFrame::Format format() const { return format_; }
34 gfx::Size frame_size() const { return frame_size_; } 34 gfx::Size frame_size() const { return frame_size_; }
35 scoped_refptr<media::VideoFrame> last_frame() const { return last_frame_; };
35 36
36 bool enabled() const { return enabled_; } 37 bool enabled() const { return enabled_; }
37 blink::WebMediaStreamSource::ReadyState state() const { return state_; } 38 blink::WebMediaStreamSource::ReadyState state() const { return state_; }
38 39
39 private: 40 private:
40 void DeliverVideoFrame( 41 void DeliverVideoFrame(
41 const scoped_refptr<media::VideoFrame>& frame, 42 const scoped_refptr<media::VideoFrame>& frame,
42 const media::VideoCaptureFormat& format, 43 const media::VideoCaptureFormat& format,
43 const base::TimeTicks& estimated_capture_time); 44 const base::TimeTicks& estimated_capture_time);
44 45
45 int number_of_frames_; 46 int number_of_frames_;
46 bool enabled_; 47 bool enabled_;
47 media::VideoFrame::Format format_; 48 media::VideoFrame::Format format_;
48 blink::WebMediaStreamSource::ReadyState state_; 49 blink::WebMediaStreamSource::ReadyState state_;
49 gfx::Size frame_size_; 50 gfx::Size frame_size_;
51 scoped_refptr<media::VideoFrame> last_frame_;
50 base::WeakPtrFactory<MockMediaStreamVideoSink> weak_factory_; 52 base::WeakPtrFactory<MockMediaStreamVideoSink> weak_factory_;
51 }; 53 };
52 54
53 } // namespace content 55 } // namespace content
54 56
55 #endif 57 #endif
OLDNEW
« no previous file with comments | « content/renderer/media/media_stream_video_track_unittest.cc ('k') | content/renderer/media/mock_media_stream_video_sink.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698