| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_BASE_RANGES_H_ | 5 #ifndef MEDIA_BASE_RANGES_H_ |
| 6 #define MEDIA_BASE_RANGES_H_ | 6 #define MEDIA_BASE_RANGES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <algorithm> | 11 #include <algorithm> |
| 9 #include <ostream> | 12 #include <ostream> |
| 10 #include <vector> | 13 #include <vector> |
| 11 | 14 |
| 12 #include "base/logging.h" | 15 #include "base/logging.h" |
| 13 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 14 #include "media/base/media_export.h" | 17 #include "media/base/media_export.h" |
| 15 | 18 |
| 16 namespace media { | 19 namespace media { |
| 17 | 20 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 else | 155 else |
| 153 ++j; | 156 ++j; |
| 154 } | 157 } |
| 155 | 158 |
| 156 return result; | 159 return result; |
| 157 } | 160 } |
| 158 | 161 |
| 159 } // namespace media | 162 } // namespace media |
| 160 | 163 |
| 161 #endif // MEDIA_BASE_RANGES_H_ | 164 #endif // MEDIA_BASE_RANGES_H_ |
| OLD | NEW |