Index: media/filters/source_buffer_stream.cc |
diff --git a/media/filters/source_buffer_stream.cc b/media/filters/source_buffer_stream.cc |
index a77b3ae1e6178558c446a2d1aa709449f700599e..8090b2894593ce39a7dd6a1057dab1e27951684a 100644 |
--- a/media/filters/source_buffer_stream.cc |
+++ b/media/filters/source_buffer_stream.cc |
@@ -874,7 +874,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 |