| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <inttypes.h> | 5 #include <inttypes.h> |
| 6 #include <stddef.h> | 6 #include <stddef.h> |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 |
| 8 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <memory> |
| 9 #include <queue> | 11 #include <queue> |
| 10 #include <string> | 12 #include <string> |
| 11 #include <utility> | 13 #include <utility> |
| 12 | 14 |
| 13 #include "base/at_exit.h" | 15 #include "base/at_exit.h" |
| 14 #include "base/bind.h" | 16 #include "base/bind.h" |
| 15 #include "base/command_line.h" | 17 #include "base/command_line.h" |
| 16 #include "base/files/file_util.h" | 18 #include "base/files/file_util.h" |
| 17 #include "base/files/memory_mapped_file.h" | 19 #include "base/files/memory_mapped_file.h" |
| 18 #include "base/macros.h" | 20 #include "base/macros.h" |
| (...skipping 1799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1818 | 1820 |
| 1819 content::g_env = | 1821 content::g_env = |
| 1820 reinterpret_cast<content::VideoEncodeAcceleratorTestEnvironment*>( | 1822 reinterpret_cast<content::VideoEncodeAcceleratorTestEnvironment*>( |
| 1821 testing::AddGlobalTestEnvironment( | 1823 testing::AddGlobalTestEnvironment( |
| 1822 new content::VideoEncodeAcceleratorTestEnvironment( | 1824 new content::VideoEncodeAcceleratorTestEnvironment( |
| 1823 std::move(test_stream_data), log_path, run_at_fps, | 1825 std::move(test_stream_data), log_path, run_at_fps, |
| 1824 needs_encode_latency, verify_all_output))); | 1826 needs_encode_latency, verify_all_output))); |
| 1825 | 1827 |
| 1826 return RUN_ALL_TESTS(); | 1828 return RUN_ALL_TESTS(); |
| 1827 } | 1829 } |
| OLD | NEW |