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

Unified Diff: webkit/fileapi/local_file_system_operation_unittest.cc

Issue 14671020: FileAPI: Copy base::FileUtilProxy::Entry to fileapi::DirectoryEntry (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build and remove base/ change 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 | « webkit/fileapi/local_file_system_operation.cc ('k') | webkit/fileapi/obfuscated_file_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/local_file_system_operation_unittest.cc
diff --git a/webkit/fileapi/local_file_system_operation_unittest.cc b/webkit/fileapi/local_file_system_operation_unittest.cc
index f2b6cbb0c0e738271534307dd694438015fc19ee..a6a5654ec13e175c9b89f0f19a7c79b09378631e 100644
--- a/webkit/fileapi/local_file_system_operation_unittest.cc
+++ b/webkit/fileapi/local_file_system_operation_unittest.cc
@@ -86,7 +86,7 @@ class LocalFileSystemOperationTest
int status() const { return status_; }
const base::PlatformFileInfo& info() const { return info_; }
const base::FilePath& path() const { return path_; }
- const std::vector<base::FileUtilProxy::Entry>& entries() const {
+ const std::vector<DirectoryEntry>& entries() const {
return entries_;
}
const ShareableFileReference* shareable_file_ref() const {
@@ -205,7 +205,7 @@ class LocalFileSystemOperationTest
void DidReadDirectory(
base::PlatformFileError status,
- const std::vector<base::FileUtilProxy::Entry>& entries,
+ const std::vector<DirectoryEntry>& entries,
bool /* has_more */) {
entries_ = entries;
status_ = status;
@@ -276,7 +276,7 @@ class LocalFileSystemOperationTest
int status_;
base::PlatformFileInfo info_;
base::FilePath path_;
- std::vector<base::FileUtilProxy::Entry> entries_;
+ std::vector<DirectoryEntry> entries_;
scoped_refptr<ShareableFileReference> shareable_file_ref_;
private:
« no previous file with comments | « webkit/fileapi/local_file_system_operation.cc ('k') | webkit/fileapi/obfuscated_file_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698