| Index: content/browser/child_process_launcher.cc
|
| diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
|
| index b49a98201e129be66b14f5a5962482f299ba6c9e..a0dc5b72837af368cbd3aaca21320576f528218a 100644
|
| --- a/content/browser/child_process_launcher.cc
|
| +++ b/content/browser/child_process_launcher.cc
|
| @@ -510,11 +510,13 @@ base::TerminationStatus ChildProcessLauncher::GetChildTerminationStatus(
|
| }
|
|
|
| void ChildProcessLauncher::SetProcessBackgrounded(bool background) {
|
| - BrowserThread::PostTask(
|
| - BrowserThread::PROCESS_LAUNCHER, FROM_HERE,
|
| - base::Bind(
|
| - &ChildProcessLauncher::Context::SetProcessBackgrounded,
|
| - GetHandle(), background));
|
| + // TODO(wfh): re-enable this after testing if dropping the priority of
|
| + // backgrounded tabs is the root cause of http://crbug.com/381820.
|
| + // BrowserThread::PostTask(
|
| + // BrowserThread::PROCESS_LAUNCHER, FROM_HERE,
|
| + // base::Bind(
|
| + // &ChildProcessLauncher::Context::SetProcessBackgrounded,
|
| + // GetHandle(), background));
|
| }
|
|
|
| void ChildProcessLauncher::SetTerminateChildOnShutdown(
|
|
|