summaryrefslogtreecommitdiffstats
path: root/content/browser/child_process_launcher.cc
diff options
context:
space:
mode:
authorkkimlabs <kkimlabs@chromium.org>2014-10-20 12:19:15 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-20 19:19:34 +0000
commita13b509667a821c9f0d0b0b54f6854993cac761e (patch)
tree7e0e3ac57184160a3bb7971cf4113484342715be /content/browser/child_process_launcher.cc
parentb7471c743d81e54268ba77a7296b38405864d407 (diff)
downloadchromium_src-a13b509667a821c9f0d0b0b54f6854993cac761e.zip
chromium_src-a13b509667a821c9f0d0b0b54f6854993cac761e.tar.gz
chromium_src-a13b509667a821c9f0d0b0b54f6854993cac761e.tar.bz2
Fix ChildProcessLauncher::SetProcessBackgrounded(...) function.
Recently class was refactored https://codereview.chromium.org/651253002 , and there was an unexpected functional change. BUG=424816 Review URL: https://codereview.chromium.org/669443002 Cr-Commit-Position: refs/heads/master@{#300310}
Diffstat (limited to 'content/browser/child_process_launcher.cc')
-rw-r--r--content/browser/child_process_launcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc
index 2d3a1ae..ab9bd91 100644
--- a/content/browser/child_process_launcher.cc
+++ b/content/browser/child_process_launcher.cc
@@ -517,7 +517,7 @@ base::TerminationStatus ChildProcessLauncher::GetChildTerminationStatus(
}
void ChildProcessLauncher::SetProcessBackgrounded(bool background) {
- context_->process_.SetProcessBackgrounded(background);
+ context_->SetProcessBackgrounded(background);
}
void ChildProcessLauncher::SetTerminateChildOnShutdown(