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

Unified Diff: content/browser/download/save_file_manager.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 | « content/browser/download/drag_download_util.cc ('k') | content/browser/gpu/webgl_conformance_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/save_file_manager.cc
diff --git a/content/browser/download/save_file_manager.cc b/content/browser/download/save_file_manager.cc
index 36ba5a19fe4ef2cd965f93fd5dbc03051827f761..3dab9d8471794f5f59155044ef9f9dfd06e72832 100644
--- a/content/browser/download/save_file_manager.cc
+++ b/content/browser/download/save_file_manager.cc
@@ -481,7 +481,7 @@ void SaveFileManager::RenameAllFiles(
int save_package_id) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
- if (!resource_dir.empty() && !file_util::PathExists(resource_dir))
+ if (!resource_dir.empty() && !base::PathExists(resource_dir))
file_util::CreateDirectory(resource_dir);
for (FinalNameList::const_iterator i = final_names.begin();
« no previous file with comments | « content/browser/download/drag_download_util.cc ('k') | content/browser/gpu/webgl_conformance_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698