| Index: components/filesystem/directory_impl.h
|
| diff --git a/components/filesystem/directory_impl.h b/components/filesystem/directory_impl.h
|
| index 347c514806426cb06ca6a3b5809e9389d777029d..03bba301a575c7fd16c83e24c45a7fb3da2d95e0 100644
|
| --- a/components/filesystem/directory_impl.h
|
| +++ b/components/filesystem/directory_impl.h
|
| @@ -30,7 +30,7 @@ class DirectoryImpl : public Directory {
|
| DirectoryImpl(mojo::InterfaceRequest<Directory> request,
|
| base::FilePath directory_path,
|
| scoped_ptr<base::ScopedTempDir> temp_dir,
|
| - LockTable* lock_table);
|
| + scoped_refptr<LockTable> lock_table);
|
| ~DirectoryImpl() override;
|
|
|
| void set_connection_error_handler(const mojo::Closure& error_handler) {
|
| @@ -73,7 +73,7 @@ class DirectoryImpl : public Directory {
|
| mojo::StrongBinding<Directory> binding_;
|
| base::FilePath directory_path_;
|
| scoped_ptr<base::ScopedTempDir> temp_dir_;
|
| - LockTable* lock_table_;
|
| + scoped_refptr<LockTable> lock_table_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DirectoryImpl);
|
| };
|
|
|