| Index: base/process_posix.cc
|
| diff --git a/base/process_posix.cc b/base/process_posix.cc
|
| index 0ca8a04a80af4a58f02878c8a98540c15cb01257..83b350f3dac230599f5e1042cb9e27f94a0fea5c 100644
|
| --- a/base/process_posix.cc
|
| +++ b/base/process_posix.cc
|
| @@ -24,11 +24,12 @@ void Process::Terminate(int result_code) {
|
| }
|
|
|
| bool Process::IsProcessBackgrounded() const {
|
| + // http://code.google.com/p/chromium/issues/detail?id=8083
|
| return false;
|
| }
|
|
|
| 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
|
| // cleaning this up w/in higher layers since windows is probably the only
|
| // one that can raise priorities w/o privileges.
|
| @@ -36,17 +37,17 @@ bool Process::SetProcessBackgrounded(bool value) {
|
| }
|
|
|
| bool Process::ReduceWorkingSet() {
|
| - NOTIMPLEMENTED();
|
| + // http://code.google.com/p/chromium/issues/detail?id=8083
|
| return false;
|
| }
|
|
|
| bool Process::UnReduceWorkingSet() {
|
| - NOTIMPLEMENTED();
|
| + // http://code.google.com/p/chromium/issues/detail?id=8083
|
| return false;
|
| }
|
|
|
| bool Process::EmptyWorkingSet() {
|
| - NOTIMPLEMENTED();
|
| + // http://code.google.com/p/chromium/issues/detail?id=8083
|
| return false;
|
| }
|
|
|
|
|