OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <utility> |
| 6 |
| 7 #include "content/renderer/render_process.h" |
| 8 |
| 9 namespace content { |
| 10 |
| 11 RenderProcess::RenderProcess( |
| 12 const std::vector<base::SchedulerWorkerPoolParams>& worker_pool_params, |
| 13 base::TaskScheduler::WorkerPoolIndexForTraitsCallback |
| 14 worker_pool_index_for_traits_callback) |
| 15 : ChildProcess(base::ThreadPriority::NORMAL, |
| 16 worker_pool_params, |
| 17 std::move(worker_pool_index_for_traits_callback)) {} |
| 18 |
| 19 } // namespace content |
OLD | NEW |