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..ee144eccd4f9b072fbe766ca0593042d8d443d99 100644 |
| --- a/media/test/pipeline_integration_test_base.h |
| +++ b/media/test/pipeline_integration_test_base.h |
| @@ -72,8 +72,8 @@ 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); |
| + enum TestType { kHashed = 1, kClockless = 2}; |
|
wolenetz
2015/07/29 21:57:27
nit: include "Flags" in the name to indicate that
DaleCurtis
2015/07/30 01:28:14
Done.
|
| + PipelineStatus Start(const std::string& filename, uint8_t test_type); |
| void Play(); |
| void Pause(); |