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

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

Issue 9718013: Merge FilterStatusCB into PipelineStatusCB. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Keep ResetAndRunCB in filters.h. Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/capture_video_decoder.h
diff --git a/content/renderer/media/capture_video_decoder.h b/content/renderer/media/capture_video_decoder.h
index e408d8d8cf5dc7b07ae569397dc922b55a425c34..60af5a60724d95c7f055d692877af069753ac513 100644
--- a/content/renderer/media/capture_video_decoder.h
+++ b/content/renderer/media/capture_video_decoder.h
@@ -34,7 +34,7 @@ class CONTENT_EXPORT CaptureVideoDecoder
// Filter implementation.
virtual void Play(const base::Closure& callback) OVERRIDE;
virtual void Seek(base::TimeDelta time,
- const media::FilterStatusCB& cb) OVERRIDE;
+ const media::PipelineStatusCB& 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;
@@ -72,7 +72,7 @@ class CONTENT_EXPORT CaptureVideoDecoder
void PlayOnDecoderThread(const base::Closure& callback);
void SeekOnDecoderThread(base::TimeDelta time,
- const media::FilterStatusCB& cb);
+ const media::PipelineStatusCB& cb);
void PauseOnDecoderThread(const base::Closure& callback);
void FlushOnDecoderThread(const base::Closure& callback);
void StopOnDecoderThread(const base::Closure& callback);

Powered by Google App Engine
This is Rietveld 408576698