summaryrefslogtreecommitdiffstats
path: root/net/tools/gdig/gdig.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/tools/gdig/gdig.cc')
-rw-r--r--net/tools/gdig/gdig.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tools/gdig/gdig.cc b/net/tools/gdig/gdig.cc
index 2764ee5..54f0509 100644
--- a/net/tools/gdig/gdig.cc
+++ b/net/tools/gdig/gdig.cc
@@ -116,7 +116,7 @@ typedef std::vector<ReplayLogEntry> ReplayLog;
// The file should be sorted by timestamp in ascending time.
bool LoadReplayLog(const base::FilePath& file_path, ReplayLog* replay_log) {
std::string original_replay_log_contents;
- if (!file_util::ReadFileToString(file_path, &original_replay_log_contents)) {
+ if (!base::ReadFileToString(file_path, &original_replay_log_contents)) {
fprintf(stderr, "Unable to open replay file %s\n",
file_path.MaybeAsASCII().c_str());
return false;