diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 00:47:12 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-11 00:47:12 +0000 |
commit | f11a2162332dbbc8130e9ece793bc6c7859ac848 (patch) | |
tree | eb3a40a98e6e099a393d262c4a8de6011bdf6891 /sandbox/tests/integration_tests/integration_tests.cc | |
parent | d09419413a2f888a9aefe4d0a1b7c1806339fbe9 (diff) | |
download | chromium_src-f11a2162332dbbc8130e9ece793bc6c7859ac848.zip chromium_src-f11a2162332dbbc8130e9ece793bc6c7859ac848.tar.gz chromium_src-f11a2162332dbbc8130e9ece793bc6c7859ac848.tar.bz2 |
Revert 131671 - Add sandbox support for associating peer processes
TEST=HandlePolicyTest.DuplicatePeerHandle
Review URL: https://chromiumcodereview.appspot.com/9960045
TBR=jschuh@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10052001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131684 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/tests/integration_tests/integration_tests.cc')
-rw-r--r-- | sandbox/tests/integration_tests/integration_tests.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sandbox/tests/integration_tests/integration_tests.cc b/sandbox/tests/integration_tests/integration_tests.cc index 5096abb..fcebd8d 100644 --- a/sandbox/tests/integration_tests/integration_tests.cc +++ b/sandbox/tests/integration_tests/integration_tests.cc @@ -7,8 +7,7 @@ int wmain(int argc, wchar_t **argv) { if (argc >= 2) { - if (0 == _wcsicmp(argv[1], L"-child") || - 0 == _wcsicmp(argv[1], L"-child-no-sandbox")) + if (0 == _wcsicmp(argv[1], L"-child")) // This instance is a child, not the test. return sandbox::DispatchCall(argc, argv); } |