| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/callback_helpers.h" | 6 #include "base/callback_helpers.h" |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/test/simple_test_tick_clock.h" | 9 #include "base/test/simple_test_tick_clock.h" |
| 10 #include "media/base/null_video_sink.h" | 10 #include "media/base/null_video_sink.h" |
| 11 #include "media/base/test_helpers.h" | 11 #include "media/base/test_helpers.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 using testing::_; | 15 using testing::_; |
| 16 using testing::DoAll; | 16 using testing::DoAll; |
| 17 using testing::Return; | 17 using testing::Return; |
| 18 | 18 |
| 19 namespace media { | 19 namespace media { |
| 20 | 20 |
| 21 ACTION_P(RunClosure, closure) { | 21 ACTION_P(RunClosure, closure) { |
| 22 closure.Run(); | 22 closure.Run(); |
| 23 } | 23 } |
| 24 | 24 |
| 25 class NullVideoSinkTest : public testing::Test, | 25 class NullVideoSinkTest : public testing::Test, |
| 26 public VideoRendererSink::RenderCallback { | 26 public VideoRendererSink::RenderCallback { |
| 27 public: | 27 public: |
| 28 NullVideoSinkTest() { | 28 NullVideoSinkTest() |
| 29 // Never use null TimeTicks since they have special connotations. | 29 : // Never use null TimeTicks since they have special connotations. |
| 30 tick_clock_.Advance(base::TimeDelta::FromMicroseconds(12345)); | 30 tick_clock_(base::TimeTicks() + |
| 31 } | 31 base::TimeDelta::FromMicroseconds(12345)) {} |
| 32 ~NullVideoSinkTest() override {} | 32 ~NullVideoSinkTest() override {} |
| 33 | 33 |
| 34 scoped_ptr<NullVideoSink> ConstructSink(bool clockless, | 34 scoped_ptr<NullVideoSink> ConstructSink(bool clockless, |
| 35 base::TimeDelta interval) { | 35 base::TimeDelta interval) { |
| 36 scoped_ptr<NullVideoSink> new_sink(new NullVideoSink( | 36 scoped_ptr<NullVideoSink> new_sink(new NullVideoSink( |
| 37 clockless, interval, | 37 clockless, interval, |
| 38 base::Bind(&NullVideoSinkTest::FrameReceived, base::Unretained(this)), | 38 base::Bind(&NullVideoSinkTest::FrameReceived, base::Unretained(this)), |
| 39 message_loop_.task_runner())); | 39 message_loop_.task_runner())); |
| 40 new_sink->set_tick_clock_for_testing(&tick_clock_); | 40 new_sink->set_tick_clock_for_testing(&tick_clock_); |
| 41 return new_sink; | 41 return new_sink; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 current_time + (i + 1) * interval, false)) | 141 current_time + (i + 1) * interval, false)) |
| 142 .WillOnce(DoAll(RunClosure(event.GetClosure()), Return(nullptr))); | 142 .WillOnce(DoAll(RunClosure(event.GetClosure()), Return(nullptr))); |
| 143 } | 143 } |
| 144 } | 144 } |
| 145 event.RunAndWait(); | 145 event.RunAndWait(); |
| 146 ASSERT_LT(base::TimeTicks::Now() - now, kTestRuns * interval); | 146 ASSERT_LT(base::TimeTicks::Now() - now, kTestRuns * interval); |
| 147 sink->Stop(); | 147 sink->Stop(); |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace media | 150 } // namespace media |
| OLD | NEW |