| Index: chrome/common/extensions/extension_file_util.cc
|
| diff --git a/chrome/common/extensions/extension_file_util.cc b/chrome/common/extensions/extension_file_util.cc
|
| index 82982b0cc155b51b030452a5250d6f5df5a32d28..f401b92c064e58929fecdc68e9e2e08e5386641c 100644
|
| --- a/chrome/common/extensions/extension_file_util.cc
|
| +++ b/chrome/common/extensions/extension_file_util.cc
|
| @@ -228,7 +228,7 @@ std::vector<base::FilePath> FindPrivateKeyFiles(
|
| bool ValidateFilePath(const base::FilePath& path) {
|
| int64 size = 0;
|
| if (!base::PathExists(path) ||
|
| - !file_util::GetFileSize(path, &size) ||
|
| + !base::GetFileSize(path, &size) ||
|
| size == 0) {
|
| return false;
|
| }
|
|
|