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

Unified Diff: media/filters/gpu_video_decoder.cc

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: media/filters/gpu_video_decoder.cc
diff --git a/media/filters/gpu_video_decoder.cc b/media/filters/gpu_video_decoder.cc
index 0a450193bbc61d418404cd44e3c91fd9741a6123..4bb2f781539c3ad62c2cae53c6119b43c93b31d0 100644
--- a/media/filters/gpu_video_decoder.cc
+++ b/media/filters/gpu_video_decoder.cc
@@ -88,7 +88,7 @@ void GpuVideoDecoder::Stop(const base::Closure& callback) {
callback.Run();
}
-void GpuVideoDecoder::Seek(base::TimeDelta time, const FilterStatusCB& cb) {
+void GpuVideoDecoder::Seek(base::TimeDelta time, const PipelineStatusCB& cb) {
if (!gvd_loop_proxy_->BelongsToCurrentThread()) {
gvd_loop_proxy_->PostTask(FROM_HERE, base::Bind(
&GpuVideoDecoder::Seek, this, time, cb));

Powered by Google App Engine
This is Rietveld 408576698