diff options
author | jln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 01:45:55 +0000 |
---|---|---|
committer | jln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-13 01:45:55 +0000 |
commit | 4dcd33189fa085e8ed8a25a0d22b17fcde2c910a (patch) | |
tree | ac8cd47a0a4654caa92ee00b304c12f5d60c3aa1 /content/gpu | |
parent | 6c79aea5dee6109ad3f2965c522cd87db6762eaf (diff) | |
download | chromium_src-4dcd33189fa085e8ed8a25a0d22b17fcde2c910a.zip chromium_src-4dcd33189fa085e8ed8a25a0d22b17fcde2c910a.tar.gz chromium_src-4dcd33189fa085e8ed8a25a0d22b17fcde2c910a.tar.bz2 |
Linux Sandbox: split the GPU policies to their own files.
We split the GPU policies to their own independant files in order to make
sandbox_seccomp_bpf_linux.cc more sane.
Moreover, we clean up the logic so that the "WarmUp" process is an
implementation of SandboxBPFBasePolicy::PreSandboxHook().
More work remains to clean-up the GPU policies, but this is an important
first step.
In addition, we put all Linux sandboxing related files in content/common in
a new sandbox_linux directory.
BUG=325535
R=jorgelo@chromium.org, mseaborn@chromium.org, piman@chromium.org, rsesek@chromium.org
Review URL: https://codereview.chromium.org/99133015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240509 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/gpu')
-rw-r--r-- | content/gpu/gpu_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc index 766fc91..35fa4be 100644 --- a/content/gpu/gpu_main.cc +++ b/content/gpu/gpu_main.cc @@ -22,7 +22,7 @@ #include "content/common/content_constants_internal.h" #include "content/common/gpu/gpu_config.h" #include "content/common/gpu/gpu_messages.h" -#include "content/common/sandbox_linux.h" +#include "content/common/sandbox_linux/sandbox_linux.h" #include "content/gpu/gpu_child_thread.h" #include "content/gpu/gpu_process.h" #include "content/gpu/gpu_watchdog_thread.h" |