Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: content/common/zygote_commands_linux.h

Issue 11740038: Cleanup: Fix some lint errors in content/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/common/gpu/client/gl_helper.cc ('k') | content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698