Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(831)

Unified Diff: base/process_posix.cc

Issue 27180: Convert some little-used process function NOTIMPLEMENTED()s into a bug. (Closed)
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698