blob: caacee36680ffc449653bd974934549368b29844 [file] [log] [blame]
Francois Doray6d3c649692017-06-16 19:20:251// 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#ifndef CONTENT_COMMON_TASK_SCHEDULER_
6#define CONTENT_COMMON_TASK_SCHEDULER_
7
8#include "content/common/content_export.h"
9
10namespace content {
11
12// Returns the minimum number of threads that the TaskScheduler foreground pool
13// must have in a process that runs a renderer.
14int GetMinThreadsInRendererTaskSchedulerForegroundPool();
15
16} // namespace content
17
18#endif // CONTENT_COMMON_TASK_SCHEDULER_