Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1911)

Unified Diff: sandbox/tests/common/controller.h

Issue 9960045: Add sandbox support for associating peer processes (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/src/sandbox.h ('k') | sandbox/tests/common/controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/tests/common/controller.h
===================================================================
--- sandbox/tests/common/controller.h (revision 132034)
+++ sandbox/tests/common/controller.h (working copy)
@@ -95,6 +95,9 @@
// 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);
@@ -123,6 +126,7 @@
SboxTestsState state_;
bool is_init_;
bool is_async_;
+ bool no_sandbox_;
base::win::ScopedHandle target_process_;
DWORD target_process_id_;
};
« no previous file with comments | « sandbox/src/sandbox.h ('k') | sandbox/tests/common/controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698