| Index: net/tools/gdig/gdig.cc
|
| diff --git a/net/tools/gdig/gdig.cc b/net/tools/gdig/gdig.cc
|
| index 2764ee5a04045d22decdc3171576bb4cbc724008..54f05091c014a46b5e1919bec12e3e63fd4c6a1b 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;
|
|
|