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

Unified Diff: base/debug/proc_maps_linux.cc

Issue 19579005: Move ReadFileToString to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months 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 | « ash/desktop_background/desktop_background_controller.cc ('k') | base/file_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/proc_maps_linux.cc
diff --git a/base/debug/proc_maps_linux.cc b/base/debug/proc_maps_linux.cc
index 9557feb025994b1e88763b3c52f855127eaeda81..c9afd45037b7cce2787b5ccc5bdf4d9ed35e3679 100644
--- a/base/debug/proc_maps_linux.cc
+++ b/base/debug/proc_maps_linux.cc
@@ -24,7 +24,7 @@ namespace debug {
bool ReadProcMaps(std::string* proc_maps) {
FilePath proc_maps_path("/proc/self/maps");
- return file_util::ReadFileToString(proc_maps_path, proc_maps);
+ return ReadFileToString(proc_maps_path, proc_maps);
}
bool ParseProcMaps(const std::string& input,
« no previous file with comments | « ash/desktop_background/desktop_background_controller.cc ('k') | base/file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698