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

Unified Diff: gpu/config/gpu_info_collector_x11.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 | « extensions/browser/file_reader_unittest.cc ('k') | gpu/config/gpu_test_expectations_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/gpu_info_collector_x11.cc
diff --git a/gpu/config/gpu_info_collector_x11.cc b/gpu/config/gpu_info_collector_x11.cc
index a19ef9cd9ea6c19419ac0c32fb38555d58419253..e0374fa907b38fc7ffdc3b56e86b08b4f06de66b 100644
--- a/gpu/config/gpu_info_collector_x11.cc
+++ b/gpu/config/gpu_info_collector_x11.cc
@@ -48,7 +48,7 @@ std::string CollectDriverVersionATI() {
if (!base::PathExists(ati_file_path))
return std::string();
std::string contents;
- if (!file_util::ReadFileToString(ati_file_path, &contents))
+ if (!base::ReadFileToString(ati_file_path, &contents))
return std::string();
base::StringTokenizer t(contents, "\r\n");
while (t.GetNext()) {
« no previous file with comments | « extensions/browser/file_reader_unittest.cc ('k') | gpu/config/gpu_test_expectations_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698