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

Unified Diff: media/player/movie.cc

Issue 155711: Renamed FilterHost::Error() and Pipeline::GetTime() to more appropriate names. (Closed)
Patch Set: Created 11 years, 5 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 | « media/filters/video_renderer_base_unittest.cc ('k') | webkit/glue/media/simple_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/player/movie.cc
diff --git a/media/player/movie.cc b/media/player/movie.cc
index 2bb4001423a773dabe10e0727a3fcb699a1a3c9d..3554730655b91efed7d8cb989f216f6aff79bd6a 100644
--- a/media/player/movie.cc
+++ b/media/player/movie.cc
@@ -121,7 +121,7 @@ float Movie::GetDuration() {
float Movie::GetPosition() {
float position = 0.f;
if (pipeline_.get())
- position = (pipeline_->GetTime()).InMicroseconds() / 1000000.0f;
+ position = (pipeline_->GetCurrentTime()).InMicroseconds() / 1000000.0f;
return position;
}
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | webkit/glue/media/simple_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698