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

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: Updated license Created 9 years 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 | « base/process_linux.cc ('k') | base/process_win.cc » ('j') | 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 6e65ebfd6cf45ec8b966e3c70418f6729afe3fed..20e623c3fdd9ba7ee153b90595202c2edd58adeb 100644
--- a/base/process_posix.cc
+++ b/base/process_posix.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -57,6 +57,12 @@ bool Process::SetProcessBackgrounded(bool value) {
// priority.
return false;
}
+
+// static
+bool Process::CanBackgroundProcesses() {
+ return false;
+}
+
#endif
int Process::GetPriority() const {
« no previous file with comments | « base/process_linux.cc ('k') | base/process_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698