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 <stdint.h> | 5 #include <stdint.h> |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 MockRendererClient() {} | 42 MockRendererClient() {} |
43 ~MockRendererClient() override {} | 43 ~MockRendererClient() override {} |
44 | 44 |
45 // mojom::RendererClient implementation. | 45 // mojom::RendererClient implementation. |
46 MOCK_METHOD2(OnTimeUpdate, void(int64_t time_usec, int64_t max_time_usec)); | 46 MOCK_METHOD2(OnTimeUpdate, void(int64_t time_usec, int64_t max_time_usec)); |
47 MOCK_METHOD1(OnBufferingStateChange, void(mojom::BufferingState state)); | 47 MOCK_METHOD1(OnBufferingStateChange, void(mojom::BufferingState state)); |
48 MOCK_METHOD0(OnEnded, void()); | 48 MOCK_METHOD0(OnEnded, void()); |
49 MOCK_METHOD0(OnError, void()); | 49 MOCK_METHOD0(OnError, void()); |
50 MOCK_METHOD1(OnVideoOpacityChange, void(bool opaque)); | 50 MOCK_METHOD1(OnVideoOpacityChange, void(bool opaque)); |
51 MOCK_METHOD1(OnVideoNaturalSizeChange, void(const gfx::Size& size)); | 51 MOCK_METHOD1(OnVideoNaturalSizeChange, void(const gfx::Size& size)); |
| 52 MOCK_METHOD1(OnDurationChange, void(int64_t)); |
52 MOCK_METHOD1(OnStatisticsUpdate, | 53 MOCK_METHOD1(OnStatisticsUpdate, |
53 void(const media::PipelineStatistics& stats)); | 54 void(const media::PipelineStatistics& stats)); |
54 MOCK_METHOD0(OnWaitingForDecryptionKey, void()); | 55 MOCK_METHOD0(OnWaitingForDecryptionKey, void()); |
55 | 56 |
56 private: | 57 private: |
57 DISALLOW_COPY_AND_ASSIGN(MockRendererClient); | 58 DISALLOW_COPY_AND_ASSIGN(MockRendererClient); |
58 }; | 59 }; |
59 | 60 |
60 class MediaServiceTest : public shell::test::ServiceTest { | 61 class MediaServiceTest : public shell::test::ServiceTest { |
61 public: | 62 public: |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 // close the connection. | 188 // close the connection. |
188 EXPECT_CALL(*this, ConnectionClosed()) | 189 EXPECT_CALL(*this, ConnectionClosed()) |
189 .Times(Exactly(1)) | 190 .Times(Exactly(1)) |
190 .WillOnce(Invoke(run_loop_.get(), &base::RunLoop::Quit)); | 191 .WillOnce(Invoke(run_loop_.get(), &base::RunLoop::Quit)); |
191 service_factory_.reset(); | 192 service_factory_.reset(); |
192 | 193 |
193 run_loop_->Run(); | 194 run_loop_->Run(); |
194 } | 195 } |
195 | 196 |
196 } // namespace media | 197 } // namespace media |
OLD | NEW |