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

Unified Diff: chrome/browser/file_system/file_system_operation.cc

Issue 3293009: Add recursive flag to file_util_proxy::CreateDirectory (Closed)
Patch Set: rebased Created 10 years, 3 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 | « base/file_util_proxy.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/file_system/file_system_operation.cc
diff --git a/chrome/browser/file_system/file_system_operation.cc b/chrome/browser/file_system/file_system_operation.cc
index 48c0acb1aece6b352a774fe2b610ed5dd6683689..bdd0fb3318f2f406b4e4ff94b12ab795d772cdd3 100644
--- a/chrome/browser/file_system/file_system_operation.cc
+++ b/chrome/browser/file_system/file_system_operation.cc
@@ -53,7 +53,7 @@ void FileSystemOperation::CreateDirectory(const FilePath& path,
operation_pending_ = true;
base::FileUtilProxy::CreateDirectory(
ChromeThread::GetMessageLoopProxyForThread(
- ChromeThread::FILE), path, exclusive,
+ ChromeThread::FILE), path, exclusive, false, /* recursive */
callback_factory_.NewCallback(
&FileSystemOperation::DidFinishFileOperation));
}
« no previous file with comments | « base/file_util_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698