diff options
author | jln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 00:59:15 +0000 |
---|---|---|
committer | jln@chromium.org <jln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 00:59:15 +0000 |
commit | 18149178646e45f3d7dde865efbeabbab431799a (patch) | |
tree | cc19ce0fc5cc1927695c789212fab93a195b9d9f /content/worker | |
parent | 4633cdb53427b31197d3c6f991f07bee2a04e0df (diff) | |
download | chromium_src-18149178646e45f3d7dde865efbeabbab431799a.zip chromium_src-18149178646e45f3d7dde865efbeabbab431799a.tar.gz chromium_src-18149178646e45f3d7dde865efbeabbab431799a.tar.bz2 |
Move the Windows sandbox to sandbox/win
This is a rather large refactor to move the Windows sandbox to the right place.
BUG=
TEST=
NOTRY=true
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10689170
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147151 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/DEPS | 2 | ||||
-rw-r--r-- | content/worker/worker_main.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/content/worker/DEPS b/content/worker/DEPS index ba093bb..ccf9e2b 100644 --- a/content/worker/DEPS +++ b/content/worker/DEPS @@ -1,5 +1,5 @@ include_rules = [ - "+sandbox/src", + "+sandbox/win/src", "+webkit/appcache", "+webkit/glue", ] diff --git a/content/worker/worker_main.cc b/content/worker/worker_main.cc index 31b4c57..ff6a820 100644 --- a/content/worker/worker_main.cc +++ b/content/worker/worker_main.cc @@ -15,7 +15,7 @@ #include "content/worker/worker_thread.h" #if defined(OS_WIN) -#include "sandbox/src/sandbox.h" +#include "sandbox/win/src/sandbox.h" #endif // Mainline routine for running as the worker process. |