Commit 5b8a3b63 authored by evan@chromium.org's avatar evan@chromium.org

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
parent 6c2554a0
......@@ -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
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment