| 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();
|
|
|