Chromium Code Reviews| Index: components/filesystem/file_system_impl.h |
| diff --git a/components/filesystem/file_system_impl.h b/components/filesystem/file_system_impl.h |
| index 7bbecd246d7a1faf0dbea13b07d704c918907bbc..f6eaaa847004d3a414ef4fb28c3aa4b3f2a90085 100644 |
| --- a/components/filesystem/file_system_impl.h |
| +++ b/components/filesystem/file_system_impl.h |
| @@ -32,7 +32,7 @@ class FileSystemImpl : public FileSystem { |
| FileSystemImpl(mojo::Connection* connection, |
| mojo::InterfaceRequest<FileSystem> request, |
| base::FilePath persistent_dir, |
| - LockTable* lock_table); |
| + const scoped_refptr<LockTable>& lock_table); |
|
michaeln
2016/03/17 22:35:41
and again
|
| ~FileSystemImpl() override; |
| // |Files| implementation: |
| @@ -46,7 +46,7 @@ class FileSystemImpl : public FileSystem { |
| private: |
| const std::string remote_application_name_; |
| mojo::StrongBinding<FileSystem> binding_; |
| - LockTable* lock_table_; |
| + scoped_refptr<LockTable> lock_table_; |
| base::FilePath persistent_dir_; |