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

Unified Diff: content/common/set_process_title.cc

Issue 89523002: Move Posix file utils to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « content/browser/fileapi/local_file_util_unittest.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/set_process_title.cc
diff --git a/content/common/set_process_title.cc b/content/common/set_process_title.cc
index 6fde51bd6cbb92b5f70eda2526d7d7a5b44d5c32..5113ee03d97f17b666bd47c5102d7fc58411b014 100644
--- a/content/common/set_process_title.cc
+++ b/content/common/set_process_title.cc
@@ -50,7 +50,7 @@ void SetProcessTitleFromCommandLine(const char** main_argv) {
// display purposes and has no TOCTTOU security implications.
base::FilePath target;
base::FilePath self_exe(base::kProcSelfExe);
- if (file_util::ReadSymbolicLink(self_exe, &target)) {
+ if (base::ReadSymbolicLink(self_exe, &target)) {
have_argv0 = true;
title = target.value();
// If the binary has since been deleted, Linux appends " (deleted)" to the
« no previous file with comments | « content/browser/fileapi/local_file_util_unittest.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698