| Index: content/renderer/renderer_main_platform_delegate_mac.mm
|
| ===================================================================
|
| --- content/renderer/renderer_main_platform_delegate_mac.mm (revision 163290)
|
| +++ content/renderer/renderer_main_platform_delegate_mac.mm (working copy)
|
| @@ -15,8 +15,10 @@
|
| #import "content/public/common/injection_test_mac.h"
|
| #include "content/common/sandbox_init_mac.h"
|
|
|
| +namespace content {
|
| +
|
| RendererMainPlatformDelegate::RendererMainPlatformDelegate(
|
| - const content::MainFunctionParams& parameters)
|
| + const MainFunctionParams& parameters)
|
| : parameters_(parameters) {
|
| }
|
|
|
| @@ -72,7 +74,7 @@
|
| }
|
|
|
| bool RendererMainPlatformDelegate::EnableSandbox() {
|
| - return content::InitializeSandbox();
|
| + return InitializeSandbox();
|
| }
|
|
|
| void RendererMainPlatformDelegate::RunSandboxTests() {
|
| @@ -85,3 +87,5 @@
|
| sandbox_tests_bundle_ = nil;
|
| }
|
| }
|
| +
|
| +} // namespace content
|
|
|