1 // Copyright 2018 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 
5 #ifndef CHROME_CHROME_CLEANER_SETTINGS_SETTINGS_TYPES_H_
6 #define CHROME_CHROME_CLEANER_SETTINGS_SETTINGS_TYPES_H_
7 
8 namespace chrome_cleaner {
9 
10 // Values to be passed to kSandboxType and that will be used to determine the
11 // type of sandbox that should be created on a certain process.
12 enum class SandboxType {
13   // Signal no sandbox.
14   kNonSandboxed = 0,
15   kTest,
16   kEngine,
17   kParser,
18   kZipArchiver,
19   kNumValues,
20 };
21 
22 }  // namespace chrome_cleaner
23 
24 #endif  // CHROME_CHROME_CLEANER_SETTINGS_SETTINGS_TYPES_H_
25