diff options
Diffstat (limited to 'base/process_posix.cc')
-rw-r--r-- | base/process_posix.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/base/process_posix.cc b/base/process_posix.cc index 6e65ebf..20e623c 100644 --- a/base/process_posix.cc +++ b/base/process_posix.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2008 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. @@ -57,6 +57,12 @@ bool Process::SetProcessBackgrounded(bool value) { // priority. return false; } + +// static +bool Process::CanBackgroundProcesses() { + return false; +} + #endif int Process::GetPriority() const { |