diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 17:23:52 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-23 17:23:52 +0000 |
commit | 1d4802a7e3c16c8d90625e398925c6f798b2d7ed (patch) | |
tree | 2c67aa9387fc5a5d94516c81564280a013dc91e1 /base/process_posix.cc | |
parent | be5d469e3da53de61ba4a29814a834a1095b4dec (diff) | |
download | chromium_src-1d4802a7e3c16c8d90625e398925c6f798b2d7ed.zip chromium_src-1d4802a7e3c16c8d90625e398925c6f798b2d7ed.tar.gz chromium_src-1d4802a7e3c16c8d90625e398925c6f798b2d7ed.tar.bz2 |
Lie on the priority change and saw we did it w/ a comment about why we won't
be able to, but w/ the current api and higher layers, it's much more work to
fully clean that up.
Review URL: http://codereview.chromium.org/28029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10185 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_posix.cc')
-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() { |