Chromium Code Reviews| Index: media/test/pipeline_integration_test_base.h |
| diff --git a/media/test/pipeline_integration_test_base.h b/media/test/pipeline_integration_test_base.h |
| index c65ea45401459a07d352cb851c9eec55486c7fc4..eaf96a06958829826f473237b3f72688b6316809 100644 |
| --- a/media/test/pipeline_integration_test_base.h |
| +++ b/media/test/pipeline_integration_test_base.h |
| @@ -71,9 +71,9 @@ class PipelineIntegrationTestBase { |
| // Starts the pipeline in a particular mode for advanced testing and |
| // benchmarking purposes (e.g., underflow is disabled to ensure consistent |
| - // hashes). |
| - enum kTestType { kHashed, kClockless }; |
| - PipelineStatus Start(const std::string& filename, kTestType test_type); |
| + // hashes). May be combined using the bitwise or operator. |
|
chcunningham
2015/07/31 19:48:45
Might mention that it must be powers of 2.
DaleCurtis
2015/08/03 22:49:53
Done.
|
| + enum TestTypeFlags { kHashed = 1, kClockless = 2}; |
| + PipelineStatus Start(const std::string& filename, uint8_t test_type); |
| void Play(); |
| void Pause(); |