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

Unified Diff: trunk/src/chrome/browser/extensions/sandboxed_unpacker_unittest.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
Index: trunk/src/chrome/browser/extensions/sandboxed_unpacker_unittest.cc
===================================================================
--- trunk/src/chrome/browser/extensions/sandboxed_unpacker_unittest.cc (revision 198849)
+++ trunk/src/chrome/browser/extensions/sandboxed_unpacker_unittest.cc (working copy)
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop.h"
@@ -133,10 +132,10 @@
bool TempFilesRemoved() {
// Check that temporary files were cleaned up.
- int files_and_dirs = base::FileEnumerator::DIRECTORIES |
- base::FileEnumerator::FILES;
+ int files_and_dirs = file_util::FileEnumerator::DIRECTORIES |
+ file_util::FileEnumerator::FILES;
- base::FileEnumerator temp_iterator(
+ file_util::FileEnumerator temp_iterator(
temp_path_,
true, // recursive
files_and_dirs
« no previous file with comments | « trunk/src/chrome/browser/extensions/external_pref_loader.cc ('k') | trunk/src/chrome/browser/file_select_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698