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

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

Issue 9718013: Merge FilterStatusCB into PipelineStatusCB. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « content/renderer/media/capture_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/capture_video_decoder.cc
diff --git a/content/renderer/media/capture_video_decoder.cc b/content/renderer/media/capture_video_decoder.cc
index 9e1346969407d7dd9e53dcbc8bee6e3c3b8f69a6..7f0d39984cb36bdead4c3a69a5713b43d7374d0a 100644
--- a/content/renderer/media/capture_video_decoder.cc
+++ b/content/renderer/media/capture_video_decoder.cc
@@ -83,7 +83,7 @@ void CaptureVideoDecoder::Stop(const base::Closure& callback) {
}
void CaptureVideoDecoder::Seek(base::TimeDelta time,
- const media::FilterStatusCB& cb) {
+ const media::PipelineStatusCB& cb) {
message_loop_proxy_->PostTask(
FROM_HERE,
base::Bind(&CaptureVideoDecoder::SeekOnDecoderThread,
@@ -187,8 +187,9 @@ void CaptureVideoDecoder::StopOnDecoderThread(const base::Closure& callback) {
capture_engine_->StopCapture(this);
}
-void CaptureVideoDecoder::SeekOnDecoderThread(base::TimeDelta time,
- const media::FilterStatusCB& cb) {
+void CaptureVideoDecoder::SeekOnDecoderThread(
+ base::TimeDelta time,
+ const media::PipelineStatusCB& cb) {
DVLOG(1) << "SeekOnDecoderThread";
DCHECK(message_loop_proxy_->BelongsToCurrentThread());
« no previous file with comments | « content/renderer/media/capture_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698