| Index: chrome/browser/ui/webui/profiler_ui.cc
|
| diff --git a/chrome/browser/ui/webui/profiler_ui.cc b/chrome/browser/ui/webui/profiler_ui.cc
|
| index c3d26b48b7bb658f0af5510200ccb0543758ea7e..494f6283f136d2c8608a838f4e49e60ded6c37b4 100644
|
| --- a/chrome/browser/ui/webui/profiler_ui.cc
|
| +++ b/chrome/browser/ui/webui/profiler_ui.cc
|
| @@ -84,7 +84,7 @@ class ProfilerWebUIDataSource : public content::URLDataSource {
|
| // Read the file synchronously and send it as the response.
|
| base::ThreadRestrictions::ScopedAllowIO allow;
|
| std::string file_contents;
|
| - if (!file_util::ReadFileToString(file_path, &file_contents))
|
| + if (!base::ReadFileToString(file_path, &file_contents))
|
| LOG(ERROR) << "Couldn't read file: " << file_path.value();
|
| scoped_refptr<base::RefCountedString> response =
|
| new base::RefCountedString();
|
|
|