summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/renderer/renderer_main_platform_delegate_linux.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/renderer/renderer_main_platform_delegate_linux.cc b/chrome/renderer/renderer_main_platform_delegate_linux.cc
index 9ba5ff8..6502129 100644
--- a/chrome/renderer/renderer_main_platform_delegate_linux.cc
+++ b/chrome/renderer/renderer_main_platform_delegate_linux.cc
@@ -23,15 +23,18 @@ void RendererMainPlatformDelegate::PlatformUninitialize() {
}
bool RendererMainPlatformDelegate::InitSandboxTests(bool no_sandbox) {
- NOTIMPLEMENTED();
+ // We have no sandbox.
+ // http://code.google.com/p/chromium/issues/detail?id=8081
return true;
}
bool RendererMainPlatformDelegate::EnableSandbox() {
- NOTIMPLEMENTED();
+ // We have no sandbox.
+ // http://code.google.com/p/chromium/issues/detail?id=8081
return true;
}
void RendererMainPlatformDelegate::RunSandboxTests() {
- NOTIMPLEMENTED();
+ // We have no sandbox.
+ // http://code.google.com/p/chromium/issues/detail?id=8081
}