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

#include "content/renderer/render_process.h"

#include <utility>

#include "base/feature_list.h"
#include "base/threading/platform_thread.h"
#include "third_party/blink/public/common/features.h"

namespace content {

RenderProcess::RenderProcess(
    std::unique_ptr<base::ThreadPoolInstance::InitParams>
        thread_pool_init_params)
    : ChildProcess(base::ThreadType::kCompositing,
                   std::move(thread_pool_init_params)) {}

}  // namespace content