| 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 #include <stddef.h> |
| 6 #include <stdint.h> |
| 7 |
| 5 #include <cstdlib> | 8 #include <cstdlib> |
| 6 | 9 |
| 7 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" |
| 8 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 10 #include "media/base/data_buffer.h" | 14 #include "media/base/data_buffer.h" |
| 11 #include "media/base/seekable_buffer.h" | 15 #include "media/base/seekable_buffer.h" |
| 12 #include "media/base/timestamp_constants.h" | 16 #include "media/base/timestamp_constants.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 18 |
| 15 namespace media { | 19 namespace media { |
| 16 | 20 |
| 17 class SeekableBufferTest : public testing::Test { | 21 class SeekableBufferTest : public testing::Test { |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:" | 351 EXPECT_EQ(tests[i].expected_time, actual) << "With test = { start:" |
| 348 << tests[i].first_time_useconds << ", duration:" | 352 << tests[i].first_time_useconds << ", duration:" |
| 349 << tests[i].duration_useconds << ", consumed:" | 353 << tests[i].duration_useconds << ", consumed:" |
| 350 << tests[i].consume_bytes << " }\n"; | 354 << tests[i].consume_bytes << " }\n"; |
| 351 | 355 |
| 352 buffer_.Clear(); | 356 buffer_.Clear(); |
| 353 } | 357 } |
| 354 } | 358 } |
| 355 | 359 |
| 356 } // namespace media | 360 } // namespace media |
| OLD | NEW |