Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome/renderer/renderer_main_platform_delegate_linux.cc

Issue 27179: Convert sandbox NOTIMPLEMENTED()s into a bug. (Closed)
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/renderer_main_platform_delegate_linux.cc
diff --git a/chrome/renderer/renderer_main_platform_delegate_linux.cc b/chrome/renderer/renderer_main_platform_delegate_linux.cc
index 9ba5ff858a0540b914d668a3b903cc54dfa97abc..6502129bc790d60a19fa9f485946ae14b4b7dea1 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
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698