diff options
Diffstat (limited to 'chrome/browser/history/url_index_private_data.cc')
-rw-r--r-- | chrome/browser/history/url_index_private_data.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/history/url_index_private_data.cc b/chrome/browser/history/url_index_private_data.cc index 3315adb6..d4548cb 100644 --- a/chrome/browser/history/url_index_private_data.cc +++ b/chrome/browser/history/url_index_private_data.cc @@ -396,7 +396,7 @@ scoped_refptr<URLIndexPrivateData> URLIndexPrivateData::RestoreFromFile( const base::FilePath& file_path, const std::string& languages) { base::TimeTicks beginning_time = base::TimeTicks::Now(); - if (!file_util::PathExists(file_path)) + if (!base::PathExists(file_path)) return NULL; std::string data; // If there is no cache file then simply give up. This will cause us to |