Index: content/zygote/zygote_linux.cc |
diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc |
index 9c6a32911494b1fa77004ad59fa970f50c0ce318..d166465e74de383ae11233885d5d7936f7a9a512 100644 |
--- a/content/zygote/zygote_linux.cc |
+++ b/content/zygote/zygote_linux.cc |
@@ -35,8 +35,6 @@ namespace content { |
namespace { |
-const int kZygoteIdDescriptor = 7; |
- |
// NOP function. See below where this handler is installed. |
void SIGCHLDHandler(int signal) { |
} |
@@ -413,7 +411,7 @@ base::ProcessId Zygote::ReadArgsAndFork(const Pickle& pickle, |
close(kBrowserDescriptor); // Our socket from the browser. |
if (UsingSUIDSandbox()) |
- close(kZygoteIdDescriptor); // Another socket from the browser. |
+ close(content::kZygoteIdFd); // Another socket from the browser. |
brettw
2012/05/21 17:52:05
You're already in content, so remove "content::".
|
base::GlobalDescriptors::GetInstance()->Reset(mapping); |
#if defined(CHROMIUM_SELINUX) |