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

Unified Diff: base/process_posix.cc

Issue 8506036: Fix tab backgrounding on Linux / ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use LazyInstance correctly Created 9 years, 1 month 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
Index: base/process_posix.cc
diff --git a/base/process_posix.cc b/base/process_posix.cc
index 6e65ebfd6cf45ec8b966e3c70418f6729afe3fed..de1de25c1223b5dcdfde8fe0019ff7da8544e2ce 100644
--- a/base/process_posix.cc
+++ b/base/process_posix.cc
@@ -57,6 +57,12 @@ bool Process::SetProcessBackgrounded(bool value) {
// priority.
return false;
}
+
+// static
+bool Process::CanBackgroundProcesses() {
+ return false;
+}
+
#endif
int Process::GetPriority() const {

Powered by Google App Engine
This is Rietveld 408576698