diff options
Diffstat (limited to 'chromium/content/browser/sandbox_ipc_linux.cc')
-rw-r--r-- | chromium/content/browser/sandbox_ipc_linux.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/content/browser/sandbox_ipc_linux.cc b/chromium/content/browser/sandbox_ipc_linux.cc index 512b91f3be9..b0cade3d506 100644 --- a/chromium/content/browser/sandbox_ipc_linux.cc +++ b/chromium/content/browser/sandbox_ipc_linux.cc @@ -24,7 +24,7 @@ #include "base/strings/string_number_conversions.h" #include "content/public/common/content_switches.h" #include "sandbox/linux/services/libc_interceptor.h" -#include "services/service_manager/sandbox/linux/sandbox_linux.h" +#include "sandbox/policy/linux/sandbox_linux.h" namespace content { @@ -85,7 +85,7 @@ void SandboxIPCHandler::HandleRequestFromChild(int fd) { // bytes long (this is the largest message type). // The size limit used to be FontConfigIPC::kMaxFontFamilyLength which was // 2048, but we do not receive FontConfig IPC here anymore. The only payloads - // here are service_manager::SandboxLinux::METHOD_MAKE_SHARED_MEMORY_SEGMENT + // here are sandbox::policy::SandboxLinux::METHOD_MAKE_SHARED_MEMORY_SEGMENT // and HandleLocalTime from libc_interceptor for which // kMaxSandboxIPCMessagePayloadSize set to 64 should be plenty. // 128 bytes padding are necessary so recvmsg() does not return MSG_TRUNC @@ -121,7 +121,7 @@ void SandboxIPCHandler::HandleRequestFromChild(int fd) { return; if (kind == - service_manager::SandboxLinux::METHOD_MAKE_SHARED_MEMORY_SEGMENT) { + sandbox::policy::SandboxLinux::METHOD_MAKE_SHARED_MEMORY_SEGMENT) { HandleMakeSharedMemorySegment(fd, iter, fds); return; } |