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

Unified Diff: net/tools/crl_set_dump/crl_set_dump.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 | « net/test/spawned_test_server/remote_test_server.cc ('k') | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/crl_set_dump/crl_set_dump.cc
diff --git a/net/tools/crl_set_dump/crl_set_dump.cc b/net/tools/crl_set_dump/crl_set_dump.cc
index 191840803b6b27de9a972431b9c9aff7d5789e18..6c3bb54bab5ad7171594c808216e3f5bced1932e 100644
--- a/net/tools/crl_set_dump/crl_set_dump.cc
+++ b/net/tools/crl_set_dump/crl_set_dump.cc
@@ -38,10 +38,10 @@ int main(int argc, char** argv) {
output_filename = base::FilePath::FromUTF8Unsafe(argv[3]);
std::string crl_set_bytes, delta_bytes;
- if (!file_util::ReadFileToString(crl_set_filename, &crl_set_bytes))
+ if (!base::ReadFileToString(crl_set_filename, &crl_set_bytes))
return 1;
if (!delta_filename.empty() &&
- !file_util::ReadFileToString(delta_filename, &delta_bytes)) {
+ !base::ReadFileToString(delta_filename, &delta_bytes)) {
return 1;
}
« no previous file with comments | « net/test/spawned_test_server/remote_test_server.cc ('k') | net/tools/dns_fuzz_stub/dns_fuzz_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698