Index: sandbox/win/tests/common/controller.h |
diff --git a/sandbox/win/tests/common/controller.h b/sandbox/win/tests/common/controller.h |
index a6498ed12e2a796d440ba1f5252d0b246094c67b..a8f83cdc9ab7e81daa8e3f4969c193c7700d6aa9 100644 |
--- a/sandbox/win/tests/common/controller.h |
+++ b/sandbox/win/tests/common/controller.h |
@@ -73,6 +73,10 @@ class TestRunner { |
TestRunner(JobLevel job_level, TokenLevel startup_token, |
TokenLevel main_token); |
+ // TODO(pennymac): Once ALPCs are no longer being auto disabled in Init(), |
+ // this overload won't be needed. |
+ TestRunner(bool enable_create_process); |
+ |
TestRunner(); |
~TestRunner(); |
@@ -127,8 +131,10 @@ class TestRunner { |
private: |
// Initializes the data in the object. Sets is_init_ to tree if the |
// function succeeds. This is meant to be called from the constructor. |
- void Init(JobLevel job_level, TokenLevel startup_token, |
- TokenLevel main_token); |
+ void Init(JobLevel job_level, |
+ TokenLevel startup_token, |
+ TokenLevel main_token, |
+ bool enable_create_process); |
// The actual runner. |
int InternalRunTest(const wchar_t* command); |