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

Unified Diff: chrome/browser/jumplist_win.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
« no previous file with comments | « chrome/browser/importer/safari_importer_unittest.mm ('k') | chrome/browser/mac/master_prefs.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/jumplist_win.cc
diff --git a/chrome/browser/jumplist_win.cc b/chrome/browser/jumplist_win.cc
index 44471413303eb22a01d1f642bf2b933295bd30f2..ca3a75eab26a12278f428ec68c000e53b570f8f9 100644
--- a/chrome/browser/jumplist_win.cc
+++ b/chrome/browser/jumplist_win.cc
@@ -735,7 +735,7 @@ void JumpList::RunUpdate() {
// icon directory, and create a new directory which contains new JumpList
// icon files.
base::FilePath icon_dir_old(icon_dir_.value() + L"Old");
- if (file_util::PathExists(icon_dir_old))
+ if (base::PathExists(icon_dir_old))
base::Delete(icon_dir_old, true);
base::Move(icon_dir_, icon_dir_old);
file_util::CreateDirectory(icon_dir_);
« no previous file with comments | « chrome/browser/importer/safari_importer_unittest.mm ('k') | chrome/browser/mac/master_prefs.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698