| Index: chrome/browser/upload_list.cc
|
| diff --git a/chrome/browser/upload_list.cc b/chrome/browser/upload_list.cc
|
| index 3f618aa0f6228361731de3d096ba099cc80cb93f..3fe07442fc96d9a31c9835eea8fac8be893b2b78 100644
|
| --- a/chrome/browser/upload_list.cc
|
| +++ b/chrome/browser/upload_list.cc
|
| @@ -51,7 +51,7 @@ void UploadList::LoadUploadListAndInformDelegateOfCompletion() {
|
| void UploadList::LoadUploadList() {
|
| if (base::PathExists(upload_log_path_)) {
|
| std::string contents;
|
| - file_util::ReadFileToString(upload_log_path_, &contents);
|
| + base::ReadFileToString(upload_log_path_, &contents);
|
| std::vector<std::string> log_entries;
|
| base::SplitStringAlongWhitespace(contents, &log_entries);
|
| ParseLogEntries(log_entries);
|
|
|