| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> |
| 6 |
| 5 #include "base/bind.h" | 7 #include "base/bind.h" |
| 6 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 7 #include "base/rand_util.h" | 9 #include "base/rand_util.h" |
| 8 #include "base/test/launcher/unit_test_launcher.h" | 10 #include "base/test/launcher/unit_test_launcher.h" |
| 9 #include "base/test/test_suite.h" | 11 #include "base/test/test_suite.h" |
| 10 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 11 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" | 13 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" |
| 12 #include "components/scheduler/child/web_task_runner_impl.h" | 14 #include "components/scheduler/child/web_task_runner_impl.h" |
| 13 #include "components/scheduler/renderer/renderer_scheduler_impl.h" | 15 #include "components/scheduler/renderer/renderer_scheduler_impl.h" |
| 14 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" | 16 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 blink::initialize(blink_platform_support_.get()); | 143 blink::initialize(blink_platform_support_.get()); |
| 142 } | 144 } |
| 143 | 145 |
| 144 int main(int argc, char** argv) { | 146 int main(int argc, char** argv) { |
| 145 BlinkMediaTestSuite test_suite(argc, argv); | 147 BlinkMediaTestSuite test_suite(argc, argv); |
| 146 | 148 |
| 147 return base::LaunchUnitTests( | 149 return base::LaunchUnitTests( |
| 148 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, | 150 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, |
| 149 base::Unretained(&test_suite))); | 151 base::Unretained(&test_suite))); |
| 150 } | 152 } |
| OLD | NEW |