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

Unified Diff: storage/common/fileapi/directory_entry.h

Issue 1432403003: Do not call stat() when reading directories via File API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed FSP tests. Created 5 years, 1 month 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: storage/common/fileapi/directory_entry.h
diff --git a/storage/common/fileapi/directory_entry.h b/storage/common/fileapi/directory_entry.h
index 1b06828efdf7e7480d2694ab23a3d4bec19b9784..fab7fae181f42415966b22065d3c8bfdaafb4f9a 100644
--- a/storage/common/fileapi/directory_entry.h
+++ b/storage/common/fileapi/directory_entry.h
@@ -22,15 +22,10 @@ struct STORAGE_COMMON_EXPORT DirectoryEntry {
};
DirectoryEntry();
- DirectoryEntry(const std::string& name,
- DirectoryEntryType type,
- int64 size,
- const base::Time& last_modified_time);
+ DirectoryEntry(const std::string& name, DirectoryEntryType type);
base::FilePath::StringType name;
bool is_directory;
- int64 size;
- base::Time last_modified_time;
};
} // namespace storage
« no previous file with comments | « storage/browser/fileapi/file_system_dir_url_request_job.cc ('k') | storage/common/fileapi/directory_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698