Index: base/process_win.cc |
diff --git a/base/process_win.cc b/base/process_win.cc |
index 8b4c2b04f87db95f232f258c1c2fb23d8efb7dd6..3f683ab3e5a70a58dacddb5798dfaafdbf8ea15f 100644 |
--- a/base/process_win.cc |
+++ b/base/process_win.cc |
@@ -79,6 +79,11 @@ Process Process::Current() { |
return Process(::GetCurrentProcess()); |
} |
+// static |
+bool Process::CanBackgroundProcesses() { |
+ return true; |
+} |
+ |
int Process::GetPriority() const { |
DCHECK(process_); |
return ::GetPriorityClass(process_); |