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

Unified Diff: trunk/src/webkit/plugins/npapi/plugin_list_posix.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/webkit/plugins/npapi/plugin_list_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/webkit/plugins/npapi/plugin_list_posix.cc
===================================================================
--- trunk/src/webkit/plugins/npapi/plugin_list_posix.cc (revision 198849)
+++ trunk/src/webkit/plugins/npapi/plugin_list_posix.cc (working copy)
@@ -8,7 +8,6 @@
#include "base/cpu.h"
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/path_service.h"
#include "base/sha1.h"
#include "base/string_util.h"
@@ -206,9 +205,9 @@
// Construct and stat a list of all filenames under consideration, for
// later sorting by mtime.
FileTimeList files;
- base::FileEnumerator enumerator(dir_path,
- false, // not recursive
- base::FileEnumerator::FILES);
+ file_util::FileEnumerator enumerator(dir_path,
+ false, // not recursive
+ file_util::FileEnumerator::FILES);
for (base::FilePath path = enumerator.Next(); !path.value().empty();
path = enumerator.Next()) {
// Skip over Mozilla .xpt files.
Property changes on: trunk/src/webkit/plugins/npapi/plugin_list_posix.cc
___________________________________________________________________
Deleted: svn:mergeinfo
Reverse-merged /branches/chrome_webkit_merge_branch/src/webkit/plugins/npapi/plugin_list_posix.cc:r3734-4217,4606-5108,5177-5263
« no previous file with comments | « trunk/src/webkit/plugins/npapi/plugin_list_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698