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

Unified Diff: trunk/src/tools/android/md5sum/md5sum.cc

Issue 14824006: Revert 198820 "Move FileEnumerator to its own file, do some refa..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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 | « trunk/src/third_party/zlib/google/zip_unittest.cc ('k') | trunk/src/tools/heapcheck/suppressions.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/tools/android/md5sum/md5sum.cc
===================================================================
--- trunk/src/tools/android/md5sum/md5sum.cc (revision 198849)
+++ trunk/src/tools/android/md5sum/md5sum.cc (working copy)
@@ -11,7 +11,6 @@
#include <string>
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/md5.h"
@@ -54,8 +53,8 @@
for (const char** file = files; *file; ++file) {
base::FilePath file_path(*file);
if (file_util::DirectoryExists(file_path)) {
- base::FileEnumerator file_enumerator(
- file_path, true /* recurse */, base::FileEnumerator::FILES);
+ file_util::FileEnumerator file_enumerator(
+ file_path, true /* recurse */, file_util::FileEnumerator::FILES);
for (base::FilePath child, empty;
(child = file_enumerator.Next()) != empty; ) {
// If the path contains /.svn/, ignore it.
« no previous file with comments | « trunk/src/third_party/zlib/google/zip_unittest.cc ('k') | trunk/src/tools/heapcheck/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698