diff options
Diffstat (limited to 'chrome/browser/chromeos/policy/app_pack_updater.cc')
-rw-r--r-- | chrome/browser/chromeos/policy/app_pack_updater.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/policy/app_pack_updater.cc b/chrome/browser/chromeos/policy/app_pack_updater.cc index b020e86..feb5950 100644 --- a/chrome/browser/chromeos/policy/app_pack_updater.cc +++ b/chrome/browser/chromeos/policy/app_pack_updater.cc @@ -240,7 +240,7 @@ void AppPackUpdater::BlockingCheckCacheInternal( CacheEntryMap* entries) { // Start by verifying that the cache dir exists. base::FilePath dir(kAppPackCacheDir); - if (!file_util::DirectoryExists(dir)) { + if (!base::DirectoryExists(dir)) { // Create it now. if (!file_util::CreateDirectory(dir)) LOG(ERROR) << "Failed to create AppPack directory at " << dir.value(); @@ -484,7 +484,7 @@ void AppPackUpdater::BlockingInstallCacheEntry( base::Delete(cached_crx_path, true /* recursive */); } - if (!file_util::DirectoryExists(cache_dir)) { + if (!base::DirectoryExists(cache_dir)) { LOG(ERROR) << "AppPack cache directory does not exist, creating now: " << cache_dir.value(); if (!file_util::CreateDirectory(cache_dir)) { |