Commit d1921eb2 authored by sievers's avatar sievers Committed by Commit bot

Android: Remove some extra CHECKs()

These were only temporarily needed for root-causing some bot
flakiness.

BUG=396568
TBR=feng@chromium.org
NOTRY=True

Review URL: https://codereview.chromium.org/796163003

Cr-Commit-Position: refs/heads/master@{#308122}
parent faffe68d
...@@ -184,12 +184,6 @@ void ChildProcessLauncher::Context::Launch( ...@@ -184,12 +184,6 @@ void ChildProcessLauncher::Context::Launch(
// We currently only support renderer and gpu child processes. // We currently only support renderer and gpu child processes.
std::string process_type = std::string process_type =
cmd_line->GetSwitchValueASCII(switches::kProcessType); cmd_line->GetSwitchValueASCII(switches::kProcessType);
CHECK_NE(switches::kPluginProcess, process_type);
CHECK_NE(switches::kPpapiBrokerProcess, process_type);
CHECK_NE(switches::kPpapiPluginProcess, process_type);
CHECK_NE(switches::kSandboxIPCProcess, process_type);
CHECK_NE(switches::kUtilityProcess, process_type);
CHECK_NE(switches::kZygoteProcess, process_type);
CHECK(process_type == switches::kGpuProcess || CHECK(process_type == switches::kGpuProcess ||
process_type == switches::kRendererProcess); process_type == switches::kRendererProcess);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment