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

Unified Diff: content/renderer/media/capture_video_decoder.h

Issue 8528045: corresponding change in CaptureVideoDecoder and RTCVideoDecoder due to pull model used in medi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: code review 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/renderer/media/capture_video_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/capture_video_decoder.h
===================================================================
--- content/renderer/media/capture_video_decoder.h (revision 109978)
+++ content/renderer/media/capture_video_decoder.h (working copy)
@@ -5,8 +5,6 @@
#ifndef CONTENT_RENDERER_MEDIA_CAPTURE_VIDEO_DECODER_H_
#define CONTENT_RENDERER_MEDIA_CAPTURE_VIDEO_DECODER_H_
-#include <deque>
-
#include "base/time.h"
#include "content/common/content_export.h"
#include "media/base/demuxer_stream.h"
@@ -37,6 +35,7 @@
virtual void Seek(base::TimeDelta time,
const media::FilterStatusCB& cb) OVERRIDE;
virtual void Pause(const base::Closure& callback) OVERRIDE;
+ virtual void Flush(const base::Closure& callback) OVERRIDE;
virtual void Stop(const base::Closure& callback) OVERRIDE;
// Decoder implementation.
@@ -74,6 +73,7 @@
void SeekOnDecoderThread(base::TimeDelta time,
const media::FilterStatusCB& cb);
void PauseOnDecoderThread(const base::Closure& callback);
+ void FlushOnDecoderThread(const base::Closure& callback);
void StopOnDecoderThread(const base::Closure& callback);
void InitializeOnDecoderThread(
« no previous file with comments | « no previous file | content/renderer/media/capture_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698