Index: base/linux_util.h |
=================================================================== |
--- base/linux_util.h (revision 141822) |
+++ base/linux_util.h (working copy) |
@@ -15,11 +15,12 @@ |
namespace base { |
-extern const char kFindInodeSwitch[]; |
+static const char kFindInodeSwitch[] = "--find-inode"; |
-extern const long kSUIDSandboxApiNumber; |
-extern const char kSandboxEnvironmentApiRequest[]; |
-extern const char kSandboxEnvironmentApiProvides[]; |
+// This should be kept in sync with sandbox/linux/suid/sandbox.c |
+static const long kSUIDSandboxApiNumber = 1; |
+static const char kSandboxEnvironmentApiRequest[] = "SBX_CHROME_API_RQ"; |
+static const char kSandboxEnvironmentApiProvides[] = "SBX_CHROME_API_PRV"; |
// This is declared here so the crash reporter can access the memory directly |
// in compromised context without going through the standard library. |