blob: 81e49e2e03e1c637c1cb3877c32455c5153c3495 [file] [log] [blame]
// 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::string& thread_pool_name,
std::unique_ptr<base::ThreadPool::InitParams> thread_pool_init_params)
: ChildProcess(base::ThreadPriority::NORMAL,
thread_pool_name,
std::move(thread_pool_init_params)) {}
} // namespace content