| Index: content/browser/tracing/tracing_ui.cc
|
| diff --git a/content/browser/tracing/tracing_ui.cc b/content/browser/tracing/tracing_ui.cc
|
| index aab652d5bf1f2dc3ae2886460b84a159fde202b0..7793adb06c4b4d02d3b4d6834c9fc8f7295e1f79 100644
|
| --- a/content/browser/tracing/tracing_ui.cc
|
| +++ b/content/browser/tracing/tracing_ui.cc
|
| @@ -225,7 +225,7 @@ void TracingMessageHandler::OnBeginRequestBufferPercentFull(
|
| // TaskProxy callback when reading is complete.
|
| void ReadTraceFileCallback(TaskProxy* proxy, const base::FilePath& path) {
|
| std::string file_contents;
|
| - if (!file_util::ReadFileToString(path, &file_contents))
|
| + if (!base::ReadFileToString(path, &file_contents))
|
| return;
|
|
|
| // We need to escape the file contents, because it will go into a javascript
|
|
|