Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: media/test/pipeline_integration_test_base.h

Issue 2688383006: [Media, Video] Update WMPI when the pipeline gets a new average keyframe distance. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/filters/pipeline_controller_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/filters/pipeline_controller_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698