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

Unified Diff: components/profile_service/profile_service_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: Remove stray mark. 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/profile_service/profile_service_impl.h
diff --git a/components/profile_service/profile_service_impl.h b/components/profile_service/profile_service_impl.h
index 72f7ce8c6fc24004a31adbdf275bc52d0587af8f..6022af02c69a042764187c25fb8bfb90b78b0839 100644
--- a/components/profile_service/profile_service_impl.h
+++ b/components/profile_service/profile_service_impl.h
@@ -16,24 +16,28 @@ namespace filesystem {
class LockTable;
}
+namespace mojo {
+class MessageLoopRef;
+}
+
namespace profile {
// A service which serves directories to callers.
class ProfileServiceImpl : public ProfileService {
public:
- ProfileServiceImpl(mojo::Connection* connection,
- mojo::InterfaceRequest<ProfileService> request,
- base::FilePath base_profile_dir,
- filesystem::LockTable* lock_table);
+ ProfileServiceImpl(const base::FilePath& base_profile_dir,
+ const scoped_refptr<filesystem::LockTable>& lock_table);
~ProfileServiceImpl() override;
// Overridden from ProfileService:
- void GetDirectory(
- mojo::InterfaceRequest<filesystem::Directory> request) override;
+ void GetDirectory(filesystem::DirectoryRequest request,
+ const GetDirectoryCallback& callback) override;
+ void GetSubDirectory(const mojo::String& sub_directory_path,
+ filesystem::DirectoryRequest request,
+ const GetSubDirectoryCallback& callback) override;
private:
- mojo::StrongBinding<ProfileService> binding_;
- filesystem::LockTable* lock_table_;
+ scoped_refptr<filesystem::LockTable> lock_table_;
base::FilePath path_;
DISALLOW_COPY_AND_ASSIGN(ProfileServiceImpl);

Powered by Google App Engine
This is Rietveld 408576698