Index: content/utility/utility_main.cc |
=================================================================== |
--- content/utility/utility_main.cc (revision 163080) |
+++ content/utility/utility_main.cc (working copy) |
@@ -17,8 +17,10 @@ |
#include "sandbox/win/src/sandbox.h" |
#endif |
+namespace content { |
+ |
// Mainline routine for running as the utility process. |
-int UtilityMain(const content::MainFunctionParams& parameters) { |
+int UtilityMain(const MainFunctionParams& parameters) { |
// The main message loop of the utility process. |
MessageLoop main_message_loop; |
base::PlatformThread::SetName("CrUtilityMain"); |
@@ -28,7 +30,7 @@ |
#if defined(OS_LINUX) |
// Initialize the sandbox before any thread is created. |
- content::InitializeSandbox(); |
+ InitializeSandbox(); |
#endif |
ChildProcess utility_process; |
@@ -49,3 +51,5 @@ |
return 0; |
} |
+ |
+} // namespace content |