threading_features.h 520 B

123456789101112131415161718192021
  1. // Copyright 2020 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. #ifndef BASE_THREADING_THREADING_FEATURES_H_
  5. #define BASE_THREADING_THREADING_FEATURES_H_
  6. #include "base/base_export.h"
  7. #include "build/build_config.h"
  8. namespace base {
  9. struct Feature;
  10. #if defined(OS_APPLE)
  11. extern const BASE_EXPORT Feature kOptimizedRealtimeThreadingMac;
  12. #endif
  13. } // namespace base
  14. #endif // BASE_THREADING_THREADING_FEATURES_H_