| Index: webkit/fileapi/file_system_database_test_helper.cc
|
| diff --git a/webkit/fileapi/file_system_database_test_helper.cc b/webkit/fileapi/file_system_database_test_helper.cc
|
| index 838173a891630769ccfaaa6a77a747713188a7e9..da1a5e13a28135a79a57caac5220f18e5a4913dc 100644
|
| --- a/webkit/fileapi/file_system_database_test_helper.cc
|
| +++ b/webkit/fileapi/file_system_database_test_helper.cc
|
| @@ -15,15 +15,15 @@
|
|
|
| namespace fileapi {
|
|
|
| -void CorruptDatabase(const FilePath& db_path,
|
| +void CorruptDatabase(const base::FilePath& db_path,
|
| leveldb::FileType type,
|
| ptrdiff_t offset,
|
| size_t size) {
|
| file_util::FileEnumerator file_enum(db_path, false /* not recursive */,
|
| file_util::FileEnumerator::DIRECTORIES |
|
| file_util::FileEnumerator::FILES);
|
| - FilePath file_path;
|
| - FilePath picked_file_path;
|
| + base::FilePath file_path;
|
| + base::FilePath picked_file_path;
|
| uint64 picked_file_number = kuint64max;
|
|
|
| while (!(file_path = file_enum.Next()).empty()) {
|
|
|