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 ff4df3227e53a25c43ba27f990ecd20f32b75532..62d9b51da5418d6358abfafc1e998dbef87c525b 100644 |
--- a/chrome/installer/util/duplicate_tree_detector.cc |
+++ b/chrome/installer/util/duplicate_tree_detector.cc |
@@ -6,13 +6,13 @@ |
#include "chrome/installer/util/duplicate_tree_detector.h" |
#include "base/file_util.h" |
+#include "base/files/file_enumerator.h" |
#include "base/logging.h" |
namespace installer { |
bool IsIdenticalFileHierarchy(const base::FilePath& src_path, |
const base::FilePath& dest_path) { |
- using file_util::FileEnumerator; |
base::PlatformFileInfo src_info; |
base::PlatformFileInfo dest_info; |
@@ -35,8 +35,8 @@ bool IsIdenticalFileHierarchy(const base::FilePath& src_path, |
// "identical" to all the entries in src_path. |
is_identical = true; |
- FileEnumerator path_enum(src_path, false /* not recursive */, |
- FileEnumerator::FILES | FileEnumerator::DIRECTORIES); |
+ base::FileEnumerator path_enum(src_path, false /* not recursive */, |
+ base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES); |
for (base::FilePath path = path_enum.Next(); |
is_identical && !path.empty(); |
path = path_enum.Next()) { |