summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-16 02:44:15 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-16 02:44:15 +0000
commit37c12077ecb501fe0b636a22c86a468bb7f61cd3 (patch)
tree9d32585319a0e53fa0a94c6cd255ddee26156e27 /chrome/renderer
parentd0ba2c2d1f8180150f11be94424112c5562d70e0 (diff)
downloadchromium_src-37c12077ecb501fe0b636a22c86a468bb7f61cd3.zip
chromium_src-37c12077ecb501fe0b636a22c86a468bb7f61cd3.tar.gz
chromium_src-37c12077ecb501fe0b636a22c86a468bb7f61cd3.tar.bz2
Linux: update outdated comments about sandboxing.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/renderer_main_platform_delegate_linux.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/renderer/renderer_main_platform_delegate_linux.cc b/chrome/renderer/renderer_main_platform_delegate_linux.cc
index 6502129..34e04d2 100644
--- a/chrome/renderer/renderer_main_platform_delegate_linux.cc
+++ b/chrome/renderer/renderer_main_platform_delegate_linux.cc
@@ -23,18 +23,18 @@ void RendererMainPlatformDelegate::PlatformUninitialize() {
}
bool RendererMainPlatformDelegate::InitSandboxTests(bool no_sandbox) {
- // We have no sandbox.
- // http://code.google.com/p/chromium/issues/detail?id=8081
+ // The sandbox is started in the zygote process: zygote_main_linux.cc
+ // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox
return true;
}
bool RendererMainPlatformDelegate::EnableSandbox() {
- // We have no sandbox.
- // http://code.google.com/p/chromium/issues/detail?id=8081
+ // The sandbox is started in the zygote process: zygote_main_linux.cc
+ // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox
return true;
}
void RendererMainPlatformDelegate::RunSandboxTests() {
- // We have no sandbox.
- // http://code.google.com/p/chromium/issues/detail?id=8081
+ // The sandbox is started in the zygote process: zygote_main_linux.cc
+ // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox
}