| 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> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 10 #include "base/rand_util.h" | 9 #include "base/rand_util.h" |
| 11 #include "base/test/launcher/unit_test_launcher.h" | 10 #include "base/test/launcher/unit_test_launcher.h" |
| 12 #include "base/test/test_suite.h" | 11 #include "base/test/test_suite.h" |
| 13 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 14 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" | 13 #include "components/scheduler/child/scheduler_tqm_delegate_impl.h" |
| 15 #include "components/scheduler/child/web_task_runner_impl.h" | 14 #include "components/scheduler/child/web_task_runner_impl.h" |
| 16 #include "components/scheduler/renderer/renderer_scheduler_impl.h" | 15 #include "components/scheduler/renderer/renderer_scheduler_impl.h" |
| 17 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" | 16 #include "components/scheduler/renderer/renderer_web_scheduler_impl.h" |
| 18 #include "components/scheduler/test/lazy_scheduler_message_loop_delegate_for_tes
ts.h" | 17 #include "components/scheduler/test/lazy_scheduler_message_loop_delegate_for_tes
ts.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 blink::initialize(blink_platform_support_.get()); | 132 blink::initialize(blink_platform_support_.get()); |
| 134 } | 133 } |
| 135 | 134 |
| 136 int main(int argc, char** argv) { | 135 int main(int argc, char** argv) { |
| 137 BlinkMediaTestSuite test_suite(argc, argv); | 136 BlinkMediaTestSuite test_suite(argc, argv); |
| 138 | 137 |
| 139 return base::LaunchUnitTests( | 138 return base::LaunchUnitTests( |
| 140 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, | 139 argc, argv, base::Bind(&BlinkMediaTestSuite::Run, |
| 141 base::Unretained(&test_suite))); | 140 base::Unretained(&test_suite))); |
| 142 } | 141 } |
| OLD | NEW |