Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(861)

Unified Diff: chrome/browser/chromeos/drive/file_cache.cc

Issue 18286004: Move PathExists to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « chrome/browser/chromeos/drive/fake_file_system.cc ('k') | chrome/browser/chromeos/drive/file_cache_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698