0

Convert some little-used process function NOTIMPLEMENTED()s into a bug.

Review URL: http://codereview.chromium.org/27180

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10415 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
evan@chromium.org
2009-02-26 00:12:14 +00:00
parent da570e8948
commit bb095ea448

@@ -24,11 +24,12 @@ void Process::Terminate(int result_code) {
} }
bool Process::IsProcessBackgrounded() const { bool Process::IsProcessBackgrounded() const {
// http://code.google.com/p/chromium/issues/detail?id=8083
return false; return false;
} }
bool Process::SetProcessBackgrounded(bool value) { bool Process::SetProcessBackgrounded(bool value) {
NOTIMPLEMENTED(); // http://code.google.com/p/chromium/issues/detail?id=8083
// Just say we did it to keep renderer happy at the moment. Need to finish // 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 // cleaning this up w/in higher layers since windows is probably the only
// one that can raise priorities w/o privileges. // one that can raise priorities w/o privileges.
@@ -36,17 +37,17 @@ bool Process::SetProcessBackgrounded(bool value) {
} }
bool Process::ReduceWorkingSet() { bool Process::ReduceWorkingSet() {
NOTIMPLEMENTED(); // http://code.google.com/p/chromium/issues/detail?id=8083
return false; return false;
} }
bool Process::UnReduceWorkingSet() { bool Process::UnReduceWorkingSet() {
NOTIMPLEMENTED(); // http://code.google.com/p/chromium/issues/detail?id=8083
return false; return false;
} }
bool Process::EmptyWorkingSet() { bool Process::EmptyWorkingSet() {
NOTIMPLEMENTED(); // http://code.google.com/p/chromium/issues/detail?id=8083
return false; return false;
} }