diff options
-rw-r--r-- | base/process_posix.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/process_posix.cc b/base/process_posix.cc index 30ca81d..0ca8a04 100644 --- a/base/process_posix.cc +++ b/base/process_posix.cc @@ -29,7 +29,10 @@ bool Process::IsProcessBackgrounded() const { bool Process::SetProcessBackgrounded(bool value) { NOTIMPLEMENTED(); - return false; + // Just say we did it to keep renderer happy at the moment. Need to finish + // cleaning this up w/in higher layers since windows is probably the only + // one that can raise priorities w/o privileges. + return true; } bool Process::ReduceWorkingSet() { |