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

Unified Diff: trunk/src/content/test/image_decoder_test.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/content/test/image_decoder_test.cc
===================================================================
--- trunk/src/content/test/image_decoder_test.cc (revision 198849)
+++ trunk/src/content/test/image_decoder_test.cc (working copy)
@@ -5,7 +5,6 @@
#include "content/test/image_decoder_test.h"
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/md5.h"
#include "base/memory/scoped_ptr.h"
@@ -122,9 +121,9 @@
std::vector<base::FilePath> ImageDecoderTest::GetImageFiles() const {
std::string pattern = "*." + format_;
- base::FileEnumerator enumerator(data_dir_,
- false,
- base::FileEnumerator::FILES);
+ file_util::FileEnumerator enumerator(data_dir_,
+ false,
+ file_util::FileEnumerator::FILES);
std::vector<base::FilePath> image_files;
base::FilePath next_file_name;
« no previous file with comments | « trunk/src/content/gpu/gpu_info_collector_win.cc ('k') | trunk/src/gpu/tools/compositor_model_bench/compositor_model_bench.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698