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

Unified Diff: sandbox/win/tests/common/controller.cc

Issue 2130753002: Made setting lowbox token a warning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
Index: sandbox/win/tests/common/controller.cc
diff --git a/sandbox/win/tests/common/controller.cc b/sandbox/win/tests/common/controller.cc
index 0bdb033185ab5ccd080c22afed33a667fa950fe9..f71ec481431ca78aa40f996252681aff530a5cd8 100644
--- a/sandbox/win/tests/common/controller.cc
+++ b/sandbox/win/tests/common/controller.cc
@@ -222,6 +222,7 @@ int TestRunner::InternalRunTest(const wchar_t* command) {
// Launch the sandboxed process.
ResultCode result = SBOX_ALL_OK;
+ ResultCode warning_result = SBOX_ALL_OK;
PROCESS_INFORMATION target = {0};
base::string16 arguments(L"\"");
@@ -238,7 +239,7 @@ int TestRunner::InternalRunTest(const wchar_t* command) {
}
} else {
result = broker_->SpawnTarget(prog_name, arguments.c_str(), policy_,
- &target);
+ &warning_result, &target);
}
if (SBOX_ALL_OK != result)

Powered by Google App Engine
This is Rietveld 408576698