| Index: chrome/browser/chromeos/drive/file_cache.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_cache.cc b/chrome/browser/chromeos/drive/file_cache.cc
|
| index e8d44cd706d3a220f6242d69c1806b3c2bc7b6c0..7ffe8ad4e4f3172ad8b2ed77148d135caa771cf9 100644
|
| --- a/chrome/browser/chromeos/drive/file_cache.cc
|
| +++ b/chrome/browser/chromeos/drive/file_cache.cc
|
| @@ -702,7 +702,7 @@ bool FileCache::HasEnoughSpaceFor(int64 num_bytes,
|
| }
|
|
|
| bool FileCache::ImportOldDB(const base::FilePath& old_db_path) {
|
| - if (!file_util::PathExists(old_db_path)) // Old DB is not there, do nothing.
|
| + if (!base::PathExists(old_db_path)) // Old DB is not there, do nothing.
|
| return false;
|
|
|
| // Copy all entries stored in the old DB.
|
|
|