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

Unified Diff: chrome/browser/chromeos/policy/user_policy_disk_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/policy/user_policy_disk_cache.cc
diff --git a/chrome/browser/chromeos/policy/user_policy_disk_cache.cc b/chrome/browser/chromeos/policy/user_policy_disk_cache.cc
index 456e1c7a0785b935aee07670d810788908e1bb7e..bb93e8972296a6bd109f62faa335cbb22c007aa8 100644
--- a/chrome/browser/chromeos/policy/user_policy_disk_cache.cc
+++ b/chrome/browser/chromeos/policy/user_policy_disk_cache.cc
@@ -66,7 +66,7 @@ void UserPolicyDiskCache::LoadOnFileThread() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
em::CachedCloudPolicyResponse cached_response;
- if (!file_util::PathExists(backing_file_path_)) {
+ if (!base::PathExists(backing_file_path_)) {
LoadDone(LOAD_RESULT_NOT_FOUND, cached_response);
return;
}

Powered by Google App Engine
This is Rietveld 408576698