| Index: sandbox/win/src/process_thread_policy.h
|
| diff --git a/sandbox/win/src/process_thread_policy.h b/sandbox/win/src/process_thread_policy.h
|
| index 2871dcaa276b3b660a1f202487644600e26b21da..d9d596cb11129d45db53b5f4c97c71ebdffa22c3 100644
|
| --- a/sandbox/win/src/process_thread_policy.h
|
| +++ b/sandbox/win/src/process_thread_policy.h
|
| @@ -75,6 +75,19 @@ class ProcessPolicy {
|
| const base::string16 &app_name,
|
| const base::string16 &command_line,
|
| PROCESS_INFORMATION* process_info);
|
| +
|
| + // Processes a 'CreateThread()' request from the target.
|
| + // 'client_info' : the target process that is making the request.
|
| + // 'eval_result' : The desired policy action to accomplish.
|
| + static DWORD CreateThreadAction(EvalResult eval_result,
|
| + const ClientInfo& client_info,
|
| + LPSECURITY_ATTRIBUTES thread_attributes,
|
| + SIZE_T stack_size,
|
| + LPTHREAD_START_ROUTINE start_address,
|
| + PVOID parameter,
|
| + DWORD creation_flags,
|
| + LPDWORD thread_id,
|
| + HANDLE* handle);
|
| };
|
|
|
| } // namespace sandbox
|
|
|