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

Unified Diff: content/common/sandbox_init_mac.cc

Issue 11228040: Move sandbox code in content to content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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
Index: content/common/sandbox_init_mac.cc
===================================================================
--- content/common/sandbox_init_mac.cc (revision 163460)
+++ content/common/sandbox_init_mac.cc (working copy)
@@ -14,10 +14,10 @@
bool InitializeSandbox(int sandbox_type, const FilePath& allowed_dir) {
// Warm up APIs before turning on the sandbox.
- sandbox::Sandbox::SandboxWarmup(sandbox_type);
+ Sandbox::SandboxWarmup(sandbox_type);
// Actually sandbox the process.
- return sandbox::Sandbox::EnableSandbox(sandbox_type, allowed_dir);
+ return Sandbox::EnableSandbox(sandbox_type, allowed_dir);
}
// Fill in |sandbox_type| and |allowed_dir| based on the command line, returns

Powered by Google App Engine
This is Rietveld 408576698