diff options
author | serya@chromium.org <serya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 00:06:06 +0000 |
---|---|---|
committer | serya@chromium.org <serya@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-15 00:06:06 +0000 |
commit | 5d11eff456ebdd84b7af0f9144d0c83abd69004c (patch) | |
tree | e6cca03b70f1e3ade400d7547a608f6b9234c513 /media | |
parent | f820d267a8d402bb3f4139e396c98a61c5c6f2d7 (diff) | |
download | chromium_src-5d11eff456ebdd84b7af0f9144d0c83abd69004c.zip chromium_src-5d11eff456ebdd84b7af0f9144d0c83abd69004c.tar.gz chromium_src-5d11eff456ebdd84b7af0f9144d0c83abd69004c.tar.bz2 |
Fixing dropped seeks.
BUG=92251,chromium-os:19888
TEST=None
Review URL: http://codereview.chromium.org/7890012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101197 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/base/pipeline_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/pipeline_impl.cc b/media/base/pipeline_impl.cc index bf87d96..0d3c1dd 100644 --- a/media/base/pipeline_impl.cc +++ b/media/base/pipeline_impl.cc @@ -872,7 +872,7 @@ void PipelineImpl::SeekTask(base::TimeDelta time, // TODO(scherkus): should we run the callback? I'm tempted to say the API // will only execute the first Seek() request. VLOG(1) << "Media pipeline has not started, ignoring seek to " - << time.InMicroseconds(); + << time.InMicroseconds(); return; } |