Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(445)

Unified Diff: components/filesystem/file_system_impl.h

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge tot Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ff5d9bc40b8c0cebeb25d5f36ed83381fde74ac8 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);
+ scoped_refptr<LockTable> lock_table);
~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_;

Powered by Google App Engine
This is Rietveld 408576698