summaryrefslogtreecommitdiffstats
path: root/base/file_util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_util.cc')
-rw-r--r--base/file_util.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/base/file_util.cc b/base/file_util.cc
index 4f69e00..1160e39 100644
--- a/base/file_util.cc
+++ b/base/file_util.cc
@@ -339,9 +339,6 @@ bool CopyDirectory(const std::wstring& from_path, const std::wstring& to_path,
FilePath::FromWStringHack(to_path),
recursive);
}
-bool CreateDirectory(const std::wstring& full_path) {
- return CreateDirectory(FilePath::FromWStringHack(full_path));
-}
bool Delete(const std::wstring& path, bool recursive) {
return Delete(FilePath::FromWStringHack(path), recursive);
}