| Index: base/files/scoped_temp_dir.cc
|
| diff --git a/base/files/scoped_temp_dir.cc b/base/files/scoped_temp_dir.cc
|
| index 509f808f6d857121b4af7819e737771eaf656f9a..5666ce11423b77965b95a3ef1a1e52bc1f23eacb 100644
|
| --- a/base/files/scoped_temp_dir.cc
|
| +++ b/base/files/scoped_temp_dir.cc
|
| @@ -64,7 +64,7 @@ bool ScopedTempDir::Delete() {
|
| if (path_.empty())
|
| return false;
|
|
|
| - bool ret = file_util::Delete(path_, true);
|
| + bool ret = base::Delete(path_, true);
|
| if (ret) {
|
| // We only clear the path if deleted the directory.
|
| path_.clear();
|
|
|