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

Unified Diff: trunk/src/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.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/base/test/test_file_util_posix.cc ('k') | trunk/src/chrome/browser/chromeos/camera_detector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc
===================================================================
--- trunk/src/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc (revision 198849)
+++ trunk/src/chrome/browser/browsing_data/browsing_data_local_storage_helper_browsertest.cc (working copy)
@@ -9,7 +9,6 @@
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/memory/ref_counted.h"
#include "base/test/thread_test_helper.h"
@@ -130,10 +129,10 @@
BrowserThread::GetBlockingPool()->FlushForTesting();
// Ensure the file has been deleted.
- base::FileEnumerator file_enumerator(
+ file_util::FileEnumerator file_enumerator(
GetLocalStoragePathForTestingProfile(),
false,
- base::FileEnumerator::FILES);
+ file_util::FileEnumerator::FILES);
int num_files = 0;
for (base::FilePath file_path = file_enumerator.Next();
!file_path.empty();
« no previous file with comments | « trunk/src/base/test/test_file_util_posix.cc ('k') | trunk/src/chrome/browser/chromeos/camera_detector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698