| Index: chrome/browser/chromeos/file_manager/fileapi_util.h
|
| diff --git a/chrome/browser/chromeos/file_manager/fileapi_util.h b/chrome/browser/chromeos/file_manager/fileapi_util.h
|
| index 06004fd4ecf6320698439fc8779f76b887a5c0d8..175c77e8292d68825d5f3962e24d03730e0c0dbd 100644
|
| --- a/chrome/browser/chromeos/file_manager/fileapi_util.h
|
| +++ b/chrome/browser/chromeos/file_manager/fileapi_util.h
|
| @@ -35,24 +35,25 @@ namespace file_manager {
|
| namespace util {
|
|
|
| // Structure information necessary to create a EntryDefinition, and therefore
|
| -// an Entry object on the JavaScript side.
|
| +// an FileSystemEntry object on the JavaScript side.
|
| struct FileDefinition {
|
| base::FilePath virtual_path;
|
| base::FilePath absolute_path;
|
| bool is_directory;
|
| };
|
|
|
| -// Contains all information needed to create an Entry object in custom bindings.
|
| +// Contains all information needed to create an FileSystemEntry object in custom
|
| +// bindings.
|
| struct EntryDefinition {
|
| EntryDefinition();
|
| EntryDefinition(const EntryDefinition& other);
|
| ~EntryDefinition();
|
|
|
| - std::string file_system_root_url; // Used to create DOMFileSystem.
|
| - std::string file_system_name; // Value of DOMFileSystem.name.
|
| - base::FilePath full_path; // Value of Entry.fullPath.
|
| - // Whether to create FileEntry or DirectoryEntry when the corresponding entry
|
| - // is not found.
|
| + std::string file_system_root_url; // Used to create FileSystem.
|
| + std::string file_system_name; // Value of FileSystem.name.
|
| + base::FilePath full_path; // Value of FileSystemEntry.fullPath.
|
| + // Whether to create FileSystemFileEntry or FileSystemDirectoryEntry when the
|
| + // corresponding entry is not found.
|
| bool is_directory;
|
| base::File::Error error;
|
| };
|
|
|