blob: 2b80b94c49c0fad4bc40b8cc35622968482e7a0e [file] [log] [blame]
// Copyright 2021 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 SANDBOX_FEATURES_H_
#define SANDBOX_FEATURES_H_
#include "base/win/windows_version.h"
#include "build/buildflag.h"
namespace sandbox::features {
#if BUILDFLAG(IS_WIN)
// Returns whether the App Container Sandbox is supported by the current
// Windows platform.
bool IsAppContainerSandboxSupported();
#endif
} // namespace sandbox::features
#endif