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

Unified Diff: webkit/browser/fileapi/native_file_util.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows 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 | « tools/traceline/svgui/startup-release.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/native_file_util.cc
diff --git a/webkit/browser/fileapi/native_file_util.cc b/webkit/browser/fileapi/native_file_util.cc
index e27cb4ae797f9b47ff00f6e37daedb5bcf727347..7b12a62131809df0701a6007ce047921035f61fe 100644
--- a/webkit/browser/fileapi/native_file_util.cc
+++ b/webkit/browser/fileapi/native_file_util.cc
@@ -228,7 +228,7 @@ PlatformFileError NativeFileUtil::CopyOrMoveFile(
}
if (copy) {
- if (file_util::CopyFile(src_path, dest_path))
+ if (base::CopyFile(src_path, dest_path))
return base::PLATFORM_FILE_OK;
} else {
if (base::Move(src_path, dest_path))
« no previous file with comments | « tools/traceline/svgui/startup-release.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698