| 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 "ui/ozone/public/ozone_gpu_test_helper.h" | 5 #include "ui/ozone/public/ozone_gpu_test_helper.h" |
| 6 | 6 |
| 7 #include "base/thread_task_runner_handle.h" | 7 #include "base/threading/thread_task_runner_handle.h" |
| 8 #include "ipc/ipc_listener.h" | 8 #include "ipc/ipc_listener.h" |
| 9 #include "ipc/ipc_message.h" | 9 #include "ipc/ipc_message.h" |
| 10 #include "ipc/ipc_sender.h" | 10 #include "ipc/ipc_sender.h" |
| 11 #include "ipc/message_filter.h" | 11 #include "ipc/message_filter.h" |
| 12 #include "ui/ozone/public/gpu_platform_support.h" | 12 #include "ui/ozone/public/gpu_platform_support.h" |
| 13 #include "ui/ozone/public/gpu_platform_support_host.h" | 13 #include "ui/ozone/public/gpu_platform_support_host.h" |
| 14 #include "ui/ozone/public/ozone_platform.h" | 14 #include "ui/ozone/public/ozone_platform.h" |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 | 17 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 fake_gpu_process_->Init(); | 125 fake_gpu_process_->Init(); |
| 126 | 126 |
| 127 fake_gpu_process_host_.reset(new FakeGpuProcessHost( | 127 fake_gpu_process_host_.reset(new FakeGpuProcessHost( |
| 128 gpu_task_runner, io_helper_thread_->task_runner())); | 128 gpu_task_runner, io_helper_thread_->task_runner())); |
| 129 fake_gpu_process_host_->Init(); | 129 fake_gpu_process_host_->Init(); |
| 130 | 130 |
| 131 return true; | 131 return true; |
| 132 } | 132 } |
| 133 | 133 |
| 134 } // namespace ui | 134 } // namespace ui |
| OLD | NEW |