summaryrefslogtreecommitdiffstats
path: root/content/browser/child_process_launcher.cc
diff options
context:
space:
mode:
authordavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-24 19:45:02 +0000
committerdavemoore@chromium.org <davemoore@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-24 19:45:02 +0000
commit3e55e217f748774885c8babb9a8a1d3dcc4a163b (patch)
tree8cdde99d3bbd6cb090a4943ecee6b2be7b03611a /content/browser/child_process_launcher.cc
parent5bde6d1668fe077024c99cecfce09cb6bd4a67ee (diff)
downloadchromium_src-3e55e217f748774885c8babb9a8a1d3dcc4a163b.zip
chromium_src-3e55e217f748774885c8babb9a8a1d3dcc4a163b.tar.gz
chromium_src-3e55e217f748774885c8babb9a8a1d3dcc4a163b.tar.bz2
Add support for the cgroups config we have in chromeos
BUG=None TEST=None Review URL: http://codereview.chromium.org/6713089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79308 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/child_process_launcher.cc')
-rw-r--r--content/browser/child_process_launcher.cc15
1 files changed, 12 insertions, 3 deletions
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
index 1b65c72..9376efc 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -245,6 +245,11 @@ class ChildProcessLauncher::Context
process_.set_handle(base::kNullProcessHandle);
}
+ void SetProcessBackgrounded(bool background) {
+ DCHECK(!starting_);
+ process_.SetProcessBackgrounded(background);
+ }
+
static void TerminateInternal(
#if defined(OS_LINUX)
bool zygote,
@@ -343,6 +348,10 @@ base::TerminationStatus ChildProcessLauncher::GetChildTerminationStatus(
}
void ChildProcessLauncher::SetProcessBackgrounded(bool background) {
- DCHECK(!context_->starting_);
- context_->process_.SetProcessBackgrounded(background);
+ BrowserThread::PostTask(
+ BrowserThread::PROCESS_LAUNCHER, FROM_HERE,
+ NewRunnableMethod(
+ context_.get(),
+ &ChildProcessLauncher::Context::SetProcessBackgrounded,
+ background));
}