From 5c9587c69c6fc62164b35b24c92603935fb5dd2a Mon Sep 17 00:00:00 2001 From: "pinkerton@google.com" Date: Tue, 9 Dec 2008 21:20:16 +0000 Subject: step one of some refactoring to allow other platforms to re-use the app initialization code. Review URL: http://codereview.chromium.org/13295 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6627 0039d316-1c4b-4281-b951-d872f2087c98 --- sandbox/src/sandbox.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sandbox') diff --git a/sandbox/src/sandbox.h b/sandbox/src/sandbox.h index 25c61d1..e709afb 100644 --- a/sandbox/src/sandbox.h +++ b/sandbox/src/sandbox.h @@ -19,7 +19,13 @@ #ifndef SANDBOX_SRC_SANDBOX_H__ #define SANDBOX_SRC_SANDBOX_H__ +#include "build/build_config.h" + +#if defined(OS_WIN) #include +#elif defined(OS_POSIX) +typedef struct PROCESS_INFORMATION; +#endif #include "base/basictypes.h" #include "sandbox/src/sandbox_policy.h" -- cgit v1.1