blob: dd848da67cd3302503664d7470cedfec22ddfb3a [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2018 The Chromium Authors
Xi Han636c7ca52018-10-04 16:56:292// 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_BROWSER_STARTUP_HELPER_H_
6#define CONTENT_BROWSER_STARTUP_HELPER_H_
7
8#include "base/metrics/field_trial.h"
9#include "content/common/content_export.h"
10
11namespace content {
12
13// Setups fields trials and the FeatureList, and returns the unique pointer of
14// the field trials.
15std::unique_ptr<base::FieldTrialList> CONTENT_EXPORT
16SetUpFieldTrialsAndFeatureList();
17
Gabriel Charette52fa3ae2019-04-15 21:44:3718// Starts the ThreadPool.
19void CONTENT_EXPORT StartBrowserThreadPool();
Xi Han8012e462018-10-05 19:52:3020
Xi Han636c7ca52018-10-04 16:56:2921} // namespace content
22
23#endif // CONTENT_BROWSER_STARTUP_HELPER_H_