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

Unified Diff: trunk/src/webkit/fileapi/file_system_database_test_helper.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/webkit/fileapi/file_system_database_test_helper.cc
===================================================================
--- trunk/src/webkit/fileapi/file_system_database_test_helper.cc (revision 198849)
+++ trunk/src/webkit/fileapi/file_system_database_test_helper.cc (working copy)
@@ -9,7 +9,6 @@
#include <vector>
#include "base/file_util.h"
-#include "base/files/file_enumerator.h"
#include "base/stl_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "webkit/fileapi/file_system_util.h"
@@ -20,8 +19,9 @@
leveldb::FileType type,
ptrdiff_t offset,
size_t size) {
- base::FileEnumerator file_enum(db_path, false /* not recursive */,
- base::FileEnumerator::DIRECTORIES | base::FileEnumerator::FILES);
+ file_util::FileEnumerator file_enum(db_path, false /* not recursive */,
+ file_util::FileEnumerator::DIRECTORIES |
+ file_util::FileEnumerator::FILES);
base::FilePath file_path;
base::FilePath picked_file_path;
uint64 picked_file_number = kuint64max;
@@ -81,8 +81,9 @@
void DeleteDatabaseFile(const base::FilePath& db_path,
leveldb::FileType type) {
- base::FileEnumerator file_enum(db_path, false /* not recursive */,
- base::FileEnumerator::DIRECTORIES | base::FileEnumerator::FILES);
+ file_util::FileEnumerator file_enum(db_path, false /* not recursive */,
+ file_util::FileEnumerator::DIRECTORIES |
+ file_util::FileEnumerator::FILES);
base::FilePath file_path;
while (!(file_path = file_enum.Next()).empty()) {
uint64 number = kuint64max;
« no previous file with comments | « trunk/src/webkit/dom_storage/dom_storage_context.cc ('k') | trunk/src/webkit/fileapi/file_system_directory_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698