Upload upstream chromium 120.0.6099.5
[platform/framework/web/chromium-efl.git] / sandbox / features.h
1 // Copyright 2021 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SANDBOX_FEATURES_H_
6 #define SANDBOX_FEATURES_H_
7
8 #include "build/build_config.h"
9
10 namespace sandbox::features {
11 #if BUILDFLAG(IS_WIN)
12 // Returns whether the App Container Sandbox is supported by the current
13 // Windows platform.
14 bool IsAppContainerSandboxSupported();
15 #endif
16 }  // namespace sandbox::features
17
18 #endif