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_COMMON_ZYGOTE_COMMANDS_LINUX_H_ | 5 #ifndef CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ |
6 #define CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ | 6 #define CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ |
7 | 7 |
8 namespace content { | 8 namespace content { |
9 | 9 |
10 // Contents of the initial message sent from the zygote to the browser when it | 10 // Contents of the initial message sent from the zygote to the browser when it |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 // These are the command codes used on the wire between the browser and the | 29 // These are the command codes used on the wire between the browser and the |
30 // zygote. | 30 // zygote. |
31 enum { | 31 enum { |
32 // Fork off a new renderer. | 32 // Fork off a new renderer. |
33 kZygoteCommandFork = 0, | 33 kZygoteCommandFork = 0, |
34 | 34 |
35 // Reap a renderer child. | 35 // Reap a renderer child. |
36 kZygoteCommandReap = 1, | 36 kZygoteCommandReap = 1, |
37 | 37 |
38 // Check what happend to a child process. | 38 // Check what happened to a child process. |
39 kZygoteCommandGetTerminationStatus = 2, | 39 kZygoteCommandGetTerminationStatus = 2, |
40 | 40 |
41 // Read a bitmask of kSandboxLinux* | 41 // Read a bitmask of kSandboxLinux* |
42 kZygoteCommandGetSandboxStatus = 3 | 42 kZygoteCommandGetSandboxStatus = 3 |
43 }; | 43 }; |
44 | 44 |
45 } // namespace content | 45 } // namespace content |
46 | 46 |
47 #endif // CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ | 47 #endif // CONTENT_COMMON_ZYGOTE_COMMANDS_LINUX_H_ |
OLD | NEW |