| 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_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ | 5 #ifndef MEDIA_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ |
| 6 #define MEDIA_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ | 6 #define MEDIA_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 void OnEnded() override; | 199 void OnEnded() override; |
| 200 MOCK_METHOD1(OnMetadata, void(PipelineMetadata)); | 200 MOCK_METHOD1(OnMetadata, void(PipelineMetadata)); |
| 201 MOCK_METHOD1(OnBufferingStateChange, void(BufferingState)); | 201 MOCK_METHOD1(OnBufferingStateChange, void(BufferingState)); |
| 202 MOCK_METHOD0(OnDurationChange, void()); | 202 MOCK_METHOD0(OnDurationChange, void()); |
| 203 MOCK_METHOD2(OnAddTextTrack, | 203 MOCK_METHOD2(OnAddTextTrack, |
| 204 void(const TextTrackConfig& config, | 204 void(const TextTrackConfig& config, |
| 205 const AddTextTrackDoneCB& done_cb)); | 205 const AddTextTrackDoneCB& done_cb)); |
| 206 MOCK_METHOD0(OnWaitingForDecryptionKey, void(void)); | 206 MOCK_METHOD0(OnWaitingForDecryptionKey, void(void)); |
| 207 MOCK_METHOD1(OnVideoNaturalSizeChange, void(const gfx::Size&)); | 207 MOCK_METHOD1(OnVideoNaturalSizeChange, void(const gfx::Size&)); |
| 208 MOCK_METHOD1(OnVideoOpacityChange, void(bool)); | 208 MOCK_METHOD1(OnVideoOpacityChange, void(bool)); |
| 209 MOCK_METHOD0(OnVideoAverageKeyframeDistanceUpdate, void()); |
| 209 }; | 210 }; |
| 210 | 211 |
| 211 } // namespace media | 212 } // namespace media |
| 212 | 213 |
| 213 #endif // MEDIA_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ | 214 #endif // MEDIA_TEST_PIPELINE_INTEGRATION_TEST_BASE_H_ |
| OLD | NEW |