commit | 82f84b91a10f513cd59b8382a7ab00ed0f179bd5 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Aug 30 18:23:50 2013 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Aug 30 18:23:50 2013 |
tree | 125081aff715fbe6815e8bb81889d4d49f887cf3 | |
parent | 88a8115978d75161674d97cde0761cbdba73daed [diff] [blame] |
Move ReadFileToString to the base namespace. BUG= Review URL: https://codereview.chromium.org/19579005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220612 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc index 49fd150..187dac6 100644 --- a/chrome/browser/printing/print_dialog_cloud.cc +++ b/chrome/browser/printing/print_dialog_cloud.cc
@@ -671,7 +671,7 @@ } else { DLOG(WARNING) << " print data file too large to reserve space"; } - if (file_util::ReadFileToString(path_to_file, &file_data)) { + if (base::ReadFileToString(path_to_file, &file_data)) { data = base::RefCountedString::TakeString(&file_data); } }