| Index: chrome/browser/extensions/api/file_handlers/app_file_handler_util.h
|
| diff --git a/chrome/browser/extensions/api/file_handlers/app_file_handler_util.h b/chrome/browser/extensions/api/file_handlers/app_file_handler_util.h
|
| index a006e8492ba70c6b41023e4889839ce1d0cf861d..a2ab82bd8c53d0130632d4b59bda538be5126e01 100644
|
| --- a/chrome/browser/extensions/api/file_handlers/app_file_handler_util.h
|
| +++ b/chrome/browser/extensions/api/file_handlers/app_file_handler_util.h
|
| @@ -49,6 +49,8 @@ bool FileHandlerCanHandleFile(
|
|
|
| // Refers to a file entry that a renderer has been given access to.
|
| struct GrantedFileEntry {
|
| + GrantedFileEntry();
|
| +
|
| std::string id;
|
| std::string filesystem_id;
|
| std::string registered_name;
|
| @@ -60,11 +62,13 @@ GrantedFileEntry CreateFileEntry(
|
| Profile* profile,
|
| const Extension* extension,
|
| int renderer_id,
|
| - const base::FilePath& path);
|
| + const base::FilePath& path,
|
| + bool is_directory);
|
|
|
| void CheckWritableFiles(
|
| const std::vector<base::FilePath>& paths,
|
| Profile* profile,
|
| + bool is_directory,
|
| const base::Closure& on_success,
|
| const base::Callback<void(const base::FilePath&)>& on_failure);
|
|
|
|
|