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

Unified Diff: base/test/test_file_util_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 | « base/test/gtest_xml_util.cc ('k') | cc/test/pixel_test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_file_util_win.cc
diff --git a/base/test/test_file_util_win.cc b/base/test/test_file_util_win.cc
index 2a5a4d03c6567e6f585ef31a01b26d37deec331c..63c8da2c3c110d902bad0e2cd809731cf4587114 100644
--- a/base/test/test_file_util_win.cc
+++ b/base/test/test_file_util_win.cc
@@ -241,7 +241,7 @@ bool VolumeSupportsADS(const base::FilePath& path) {
bool HasInternetZoneIdentifier(const base::FilePath& full_path) {
base::FilePath zone_path(full_path.value() + L":Zone.Identifier");
std::string zone_path_contents;
- if (!file_util::ReadFileToString(zone_path, &zone_path_contents))
+ if (!base::ReadFileToString(zone_path, &zone_path_contents))
return false;
std::vector<std::string> lines;
« no previous file with comments | « base/test/gtest_xml_util.cc ('k') | cc/test/pixel_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698