Index: media/filters/source_buffer_stream.cc |
diff --git a/media/filters/source_buffer_stream.cc b/media/filters/source_buffer_stream.cc |
index 015fc6c610d180822a466a255babdc4bf9797f45..12468a6ab82205de7900b0ed6c7879d5624bf95f 100644 |
--- a/media/filters/source_buffer_stream.cc |
+++ b/media/filters/source_buffer_stream.cc |
@@ -859,7 +859,7 @@ SourceBufferRange* SourceBufferRange::SplitRange(base::TimeDelta timestamp) { |
SourceBufferRange::KeyframeMap::iterator |
SourceBufferRange::GetFirstKeyframeAt(base::TimeDelta timestamp, |
- bool skip_given_timestamp) { |
+ bool skip_given_timestamp) { |
KeyframeMap::iterator result = keyframe_map_.lower_bound(timestamp); |
// lower_bound() returns the first element >= |timestamp|, so if we don't want |
// to include keyframes == |timestamp|, we have to increment the iterator |