From 5b8a3b63d97ee7b97bb71f68c766685b87f24e81 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Wed, 25 Feb 2009 23:58:16 +0000 Subject: Convert sandbox NOTIMPLEMENTED()s into a bug. Review URL: http://codereview.chromium.org/27179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10410 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/renderer/renderer_main_platform_delegate_linux.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'chrome') 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 } -- cgit v1.1