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

Unified Diff: chrome/service/cloud_print/print_system_win.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 | « chrome/installer/util/master_preferences.cc ('k') | chrome/test/base/module_system_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/print_system_win.cc
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc
index 559a61b51b6857e0b8b244923cebfc9bf35ad5dc..e70e398be1ad9edc91dffe55c307997e13511971 100644
--- a/chrome/service/cloud_print/print_system_win.cc
+++ b/chrome/service/cloud_print/print_system_win.cc
@@ -640,7 +640,7 @@ class PrintSystemWin : public PrintSystem {
return false;
std::string document_data;
- file_util::ReadFileToString(print_data_file_path, &document_data);
+ base::ReadFileToString(print_data_file_path, &document_data);
ULONG doc_bytes_written = 0;
if (FAILED(doc_stream->Write(document_data.c_str(),
document_data.length(),
« no previous file with comments | « chrome/installer/util/master_preferences.cc ('k') | chrome/test/base/module_system_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698