| Index: chrome/browser/safe_browsing/safe_browsing_database.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_database.cc b/chrome/browser/safe_browsing/safe_browsing_database.cc
|
| index ba270ce02ecd17d0837be711e7f392073d11a65a..8aa5dadfd56ea09a3ad3d6dfc14377d5a3e69167 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_database.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_database.cc
|
| @@ -330,7 +330,7 @@ bool SBAddFullHashPrefixLess(const SBAddFullHash& a, const SBAddFullHash& b) {
|
| // that less verbose.
|
| int64 GetFileSizeOrZero(const base::FilePath& file_path) {
|
| int64 size_64;
|
| - if (!file_util::GetFileSize(file_path, &size_64))
|
| + if (!base::GetFileSize(file_path, &size_64))
|
| return 0;
|
| return size_64;
|
| }
|
|
|