#ifndef BASE_SYSTEM_SYS_INFO_H_
#define BASE_SYSTEM_SYS_INFO_H_
#include <stddef.h>
#include <stdint.h>
#include <map>
#include <optional>
#include <string>
#include <string_view>
#include "base/base_export.h"
#include "base/functional/callback_forward.h"
#include "base/gtest_prod_util.h"
#include "base/metrics/field_trial_params.h"
#include "base/time/time.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_MAC)
#include "base/feature_list.h"
#endif
namespace base {
#if BUILDFLAG(IS_MAC)
BASE_EXPORT BASE_DECLARE_FEATURE(kNumberOfCoresWithCpuSecurityMitigation);
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
BASE_EXPORT extern const char kLsbReleaseKey[];
BASE_EXPORT extern const char kLsbReleaseTimeKey[];
#endif
debug
namespace test {
class ScopedAmountOfPhysicalMemoryOverride;
}
class FilePath;
struct SystemMemoryInfoKB;
class BASE_EXPORT SysInfo { … };
}
#endif