| Index: chrome/browser/chromeos/policy/app_pack_updater.cc
|
| diff --git a/chrome/browser/chromeos/policy/app_pack_updater.cc b/chrome/browser/chromeos/policy/app_pack_updater.cc
|
| index 628150fb1891bfee7c596bb88e178dfedf0426f4..7ce7a20a2d66a29c7e7a07939bb4dd2d36c3752c 100644
|
| --- a/chrome/browser/chromeos/policy/app_pack_updater.cc
|
| +++ b/chrome/browser/chromeos/policy/app_pack_updater.cc
|
| @@ -478,7 +478,7 @@ void AppPackUpdater::BlockingInstallCacheEntry(
|
| base::FilePath cache_dir(kAppPackCacheDir);
|
| base::FilePath cached_crx_path = cache_dir.Append(basename);
|
|
|
| - if (file_util::PathExists(cached_crx_path)) {
|
| + if (base::PathExists(cached_crx_path)) {
|
| LOG(WARNING) << "AppPack downloaded a crx whose filename will overwrite "
|
| << "an existing cached crx.";
|
| base::Delete(cached_crx_path, true /* recursive */);
|
|
|