| Index: components/filesystem/file_system_impl.h
|
| diff --git a/components/filesystem/file_system_impl.h b/components/filesystem/file_system_impl.h
|
| index 4c18dd562cfe39aff61b94c69f98275f62e6f8d7..11ac05d96e554e80d905fca6d28ac12cdfe41aa1 100644
|
| --- a/components/filesystem/file_system_impl.h
|
| +++ b/components/filesystem/file_system_impl.h
|
| @@ -25,7 +25,8 @@
|
|
|
| class FileSystemImpl : public FileSystem {
|
| public:
|
| - FileSystemImpl(mojo::Connection* connection,
|
| + FileSystemImpl(FileSystemApp* app,
|
| + mojo::Connection* connection,
|
| mojo::InterfaceRequest<FileSystem> request,
|
| LockTable* lock_table);
|
| ~FileSystemImpl() override;
|
| @@ -51,6 +52,7 @@
|
| void BuildSanitizedOrigin(const std::string& origin,
|
| std::string* sanitized_origin);
|
|
|
| + FileSystemApp* app_;
|
| const std::string remote_application_url_;
|
| mojo::StrongBinding<FileSystem> binding_;
|
| LockTable* lock_table_;
|
|
|