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

Unified Diff: chrome/installer/util/duplicate_tree_detector.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
Index: chrome/installer/util/duplicate_tree_detector.cc
diff --git a/chrome/installer/util/duplicate_tree_detector.cc b/chrome/installer/util/duplicate_tree_detector.cc
index 62d9b51da5418d6358abfafc1e998dbef87c525b..a55c0487f68d194aaff9c53e6ae21734cf092ccd 100644
--- a/chrome/installer/util/duplicate_tree_detector.cc
+++ b/chrome/installer/util/duplicate_tree_detector.cc
@@ -17,8 +17,8 @@ bool IsIdenticalFileHierarchy(const base::FilePath& src_path,
base::PlatformFileInfo dest_info;
bool is_identical = false;
- if (file_util::GetFileInfo(src_path, &src_info) &&
- file_util::GetFileInfo(dest_path, &dest_info)) {
+ if (base::GetFileInfo(src_path, &src_info) &&
+ base::GetFileInfo(dest_path, &dest_info)) {
// Both paths exist, check the types:
if (!src_info.is_directory && !dest_info.is_directory) {
// Two files are "identical" if the file sizes are equivalent.
« no previous file with comments | « chrome/browser/ui/webui/chromeos/drive_internals_ui.cc ('k') | content/browser/fileapi/blob_url_request_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698