| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_MAC_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_MAC_H_ | 6 #define CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_H_ |
| 7 | 7 |
| 8 namespace content { | 8 namespace content { |
| 9 | 9 |
| 10 // Defines the Mac sandbox types known within content. Embedders can add | 10 // Defines the sandbox types known within content. Embedders can add additional |
| 11 // additional sandbox types with IDs starting with SANDBOX_TYPE_AFTER_LAST_TYPE. | 11 // sandbox types with IDs starting with SANDBOX_TYPE_AFTER_LAST_TYPE. |
| 12 | 12 |
| 13 enum SandboxType { | 13 enum SandboxType { |
| 14 // Not a valid sandbox type. | 14 // Not a valid sandbox type. |
| 15 SANDBOX_TYPE_INVALID = -1, | 15 SANDBOX_TYPE_INVALID = -1, |
| 16 | 16 |
| 17 SANDBOX_TYPE_FIRST_TYPE = 0, // Placeholder to ease iteration. | 17 SANDBOX_TYPE_FIRST_TYPE = 0, // Placeholder to ease iteration. |
| 18 | 18 |
| 19 SANDBOX_TYPE_RENDERER = SANDBOX_TYPE_FIRST_TYPE, | 19 SANDBOX_TYPE_RENDERER = SANDBOX_TYPE_FIRST_TYPE, |
| 20 | 20 |
| 21 // Utility process is as restrictive as the worker process except full | 21 // Utility process is as restrictive as the worker process except full |
| 22 // access is allowed to one configurable directory. | 22 // access is allowed to one configurable directory. |
| 23 SANDBOX_TYPE_UTILITY, | 23 SANDBOX_TYPE_UTILITY, |
| 24 | 24 |
| 25 // GPU process. | 25 // GPU process. |
| 26 SANDBOX_TYPE_GPU, | 26 SANDBOX_TYPE_GPU, |
| 27 | 27 |
| 28 // The PPAPI plugin process. | 28 // The PPAPI plugin process. |
| 29 SANDBOX_TYPE_PPAPI, | 29 SANDBOX_TYPE_PPAPI, |
| 30 | 30 |
| 31 SANDBOX_TYPE_AFTER_LAST_TYPE, // Placeholder to ease iteration. | 31 SANDBOX_TYPE_AFTER_LAST_TYPE, // Placeholder to ease iteration. |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 } // namespace content | 34 } // namespace content |
| 35 | 35 |
| 36 #endif // CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_MAC_H_ | 36 #endif // CONTENT_PUBLIC_COMMON_SANDBOX_TYPE_H_ |
| OLD | NEW |