blob: 86735e2330dbaf1b32801cdafd16de6c82415205 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright 2017 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.
// This file defines all the public base::FeatureList features for the content
// module.
#ifndef SERVICES_SERVICE_MANAGER_SANDBOX_FEATURES_H_
#define SERVICES_SERVICE_MANAGER_SANDBOX_FEATURES_H_
#include "base/feature_list.h"
#include "build/build_config.h"
#include "services/service_manager/sandbox/export.h"
namespace service_manager {
namespace features {
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature kAudioServiceSandbox;
#if !defined(OS_MACOSX)
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature
kNetworkServiceSandbox;
#endif
#if defined(OS_WIN)
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature
kWinSboxDisableExtensionPoints;
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature kGpuAppContainer;
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature kGpuLPAC;
#endif // defined(OS_WIN)
#if !defined(OS_ANDROID)
SERVICE_MANAGER_SANDBOX_EXPORT extern const base::Feature kXRSandbox;
#endif // !defined(OS_ANDROID)
} // namespace features
} // namespace service_manager
#endif // SERVICES_SERVICE_MANAGER_SANDBOX_FEATURES_H_
|