| Index: content/browser/indexed_db/indexed_db_context_impl.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.cc b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| index 7e6f6073875305bc4f48bab178622badf7d3a8cb..f3f6263d93e3e6afe6926227b001dcc65d708094 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.cc
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/file_util.h"
|
| +#include "base/files/file_enumerator.h"
|
| #include "base/logging.h"
|
| #include "base/message_loop/message_loop_proxy.h"
|
| #include "base/string_util.h"
|
| @@ -47,8 +48,8 @@ void GetAllOriginsAndPaths(const base::FilePath& indexeddb_path,
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED));
|
| if (indexeddb_path.empty())
|
| return;
|
| - file_util::FileEnumerator file_enumerator(
|
| - indexeddb_path, false, file_util::FileEnumerator::DIRECTORIES);
|
| + base::FileEnumerator file_enumerator(
|
| + indexeddb_path, false, base::FileEnumerator::DIRECTORIES);
|
| for (base::FilePath file_path = file_enumerator.Next(); !file_path.empty();
|
| file_path = file_enumerator.Next()) {
|
| if (file_path.Extension() == IndexedDBContextImpl::kIndexedDBExtension) {
|
|
|