summaryrefslogtreecommitdiffstats
path: root/base/process/process_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/process/process_linux.cc')
-rw-r--r--base/process/process_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process/process_linux.cc b/base/process/process_linux.cc
index b12e994..c5acf1b 100644
--- a/base/process/process_linux.cc
+++ b/base/process/process_linux.cc
@@ -95,7 +95,7 @@ bool Process::SetProcessBackgrounded(bool background) {
const base::FilePath file =
background ?
cgroups.Get().background_file : cgroups.Get().foreground_file;
- return file_util::WriteFile(file, pid.c_str(), pid.size()) > 0;
+ return base::WriteFile(file, pid.c_str(), pid.size()) > 0;
}
#endif // OS_CHROMEOS