OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/renderer/renderer_main_platform_delegate.h" | 5 #include "chrome/renderer/renderer_main_platform_delegate.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/debug_util.h" | 8 #include "base/debug_util.h" |
9 #include "sandbox/linux/seccomp/sandbox.h" | 9 #include "seccompsandbox/sandbox.h" |
10 | 10 |
11 #include "chrome/common/chrome_switches.h" | 11 #include "chrome/common/chrome_switches.h" |
12 | 12 |
13 RendererMainPlatformDelegate::RendererMainPlatformDelegate( | 13 RendererMainPlatformDelegate::RendererMainPlatformDelegate( |
14 const MainFunctionParams& parameters) | 14 const MainFunctionParams& parameters) |
15 : parameters_(parameters) { | 15 : parameters_(parameters) { |
16 } | 16 } |
17 | 17 |
18 RendererMainPlatformDelegate::~RendererMainPlatformDelegate() { | 18 RendererMainPlatformDelegate::~RendererMainPlatformDelegate() { |
19 } | 19 } |
(...skipping 23 matching lines...) Expand all Loading... |
43 if (switches::SeccompSandboxEnabled() && SupportsSeccompSandbox(-1)) | 43 if (switches::SeccompSandboxEnabled() && SupportsSeccompSandbox(-1)) |
44 StartSeccompSandbox(); | 44 StartSeccompSandbox(); |
45 #endif | 45 #endif |
46 return true; | 46 return true; |
47 } | 47 } |
48 | 48 |
49 void RendererMainPlatformDelegate::RunSandboxTests() { | 49 void RendererMainPlatformDelegate::RunSandboxTests() { |
50 // The sandbox is started in the zygote process: zygote_main_linux.cc | 50 // The sandbox is started in the zygote process: zygote_main_linux.cc |
51 // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox | 51 // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox |
52 } | 52 } |
OLD | NEW |