diff options
Diffstat (limited to 'sandbox/tests/common/controller.h')
-rw-r--r-- | sandbox/tests/common/controller.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sandbox/tests/common/controller.h b/sandbox/tests/common/controller.h index 5c2a471..0a78a0e 100644 --- a/sandbox/tests/common/controller.h +++ b/sandbox/tests/common/controller.h @@ -95,9 +95,6 @@ class TestRunner { // Sets TestRunner to return without waiting for the process to exit. void SetAsynchronous(bool is_async) { is_async_ = is_async; } - // Sets TestRunner to return without waiting for the process to exit. - void SetUnsandboxed(bool is_no_sandbox) { no_sandbox_ = is_no_sandbox; } - // Sets the desired state for the test to run. void SetTestState(SboxTestsState desired_state); @@ -126,7 +123,6 @@ class TestRunner { SboxTestsState state_; bool is_init_; bool is_async_; - bool no_sandbox_; base::win::ScopedHandle target_process_; DWORD target_process_id_; }; |