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

Unified Diff: webkit/glue/webfileutilities_impl.cc

Issue 105293002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « webkit/browser/fileapi/sandbox_directory_database.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webfileutilities_impl.cc
diff --git a/webkit/glue/webfileutilities_impl.cc b/webkit/glue/webfileutilities_impl.cc
index 8c40b9600b8c34734f101abe24db8fa3dca1e3a9..c7f4c7c40bbe88ac29a255afde158b3d8eaae751 100644
--- a/webkit/glue/webfileutilities_impl.cc
+++ b/webkit/glue/webfileutilities_impl.cc
@@ -32,8 +32,7 @@ bool WebFileUtilitiesImpl::getFileInfo(const WebString& path,
return false;
}
base::PlatformFileInfo file_info;
- if (!file_util::GetFileInfo(base::FilePath::FromUTF16Unsafe(path),
- &file_info))
+ if (!base::GetFileInfo(base::FilePath::FromUTF16Unsafe(path), &file_info))
return false;
webkit_glue::PlatformFileInfoToWebFileInfo(file_info, &web_file_info);
« no previous file with comments | « webkit/browser/fileapi/sandbox_directory_database.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698