summaryrefslogtreecommitdiff
path: root/chromium/content/renderer/render_process.cc
blob: 1b6e1c2e76655fddf65722bd19cafa29d657170d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <utility>

#include "content/renderer/render_process.h"

namespace content {

RenderProcess::RenderProcess(
    const std::vector<base::SchedulerWorkerPoolParams>& worker_pool_params,
    base::TaskScheduler::WorkerPoolIndexForTraitsCallback
        worker_pool_index_for_traits_callback)
    : ChildProcess(base::ThreadPriority::NORMAL,
                   worker_pool_params,
                   std::move(worker_pool_index_for_traits_callback)) {}

}  // namespace content