blob: 83f5260cd71dc434783865a256e83d05182818f1 [file] [log] [blame]
// Copyright 2020 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.
#ifndef BASE_THREADING_THREADING_FEATURES_H_
#define BASE_THREADING_THREADING_FEATURES_H_
#include "base/base_export.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_APPLE)
#include "base/metrics/field_trial_params.h"
#endif
namespace base {
struct Feature;
#if BUILDFLAG(IS_APPLE)
extern const BASE_EXPORT Feature kOptimizedRealtimeThreadingMac;
extern const BASE_EXPORT FeatureParam<bool>
kOptimizedRealtimeThreadingMacPreemptible;
extern const BASE_EXPORT FeatureParam<double>
kOptimizedRealtimeThreadingMacBusy;
extern const BASE_EXPORT FeatureParam<double>
kOptimizedRealtimeThreadingMacBusyLimit;
#endif
extern const BASE_EXPORT Feature kEnableHangWatcher;
} // namespace base
#endif // BASE_THREADING_THREADING_FEATURES_H_