Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ | 5 #ifndef COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ |
| 6 #define COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ | 6 #define COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ |
| 7 | 7 |
| 8 #include "components/filesystem/lock_table.h" | 8 #include "components/filesystem/lock_table.h" |
| 9 #include "components/leveldb/public/interfaces/leveldb.mojom.h" | |
| 10 #include "components/profile_service/public/interfaces/profile.mojom.h" | 9 #include "components/profile_service/public/interfaces/profile.mojom.h" |
| 11 #include "mojo/public/cpp/bindings/binding_set.h" | 10 #include "mojo/public/cpp/bindings/binding_set.h" |
| 12 #include "mojo/services/tracing/public/cpp/tracing_impl.h" | 11 #include "mojo/services/tracing/public/cpp/tracing_impl.h" |
| 13 #include "mojo/shell/public/cpp/interface_factory.h" | 12 #include "mojo/shell/public/cpp/interface_factory.h" |
| 14 #include "mojo/shell/public/cpp/shell_client.h" | 13 #include "mojo/shell/public/cpp/shell_client.h" |
| 15 | 14 |
| 16 namespace filesystem { | 15 namespace filesystem { |
| 17 class LockTable; | 16 class LockTable; |
| 18 } | 17 } |
| 19 | 18 |
| 20 namespace profile { | 19 namespace profile { |
| 21 | 20 |
| 22 scoped_ptr<mojo::ShellClient> CreateProfileApp(); | 21 scoped_ptr<mojo::ShellClient> CreateProfileApp(); |
| 23 | 22 |
| 24 // Application which hands off per-profile services. | 23 // Application which hands off per-profile services. |
| 25 // | 24 // |
| 26 // This Application serves ProfileService, and serves LevelDBService since most | 25 // This Application serves ProfileService. In the future, this application will |
| 27 // of the users of leveldb will want to write directly to the Directory | 26 // probably also offer any service that most Profile using applications will |
| 28 // provided by the ProfileService; we want file handling to be done in the same | 27 // need, such as preferences, but these will need to be served off of separate |
| 29 // process to minimize IPC. | 28 // threads; this class will have to be made into something like core services. |
|
jam
2016/03/03 16:32:10
nit: the "core services" comment is gonna be indec
| |
| 30 // | |
| 31 // In the future, this application will probably also offer any service that | |
| 32 // most Profile using applications will need, such as preferences. | |
| 33 class ProfileApp : public mojo::ShellClient, | 29 class ProfileApp : public mojo::ShellClient, |
| 34 public mojo::InterfaceFactory<ProfileService>, | 30 public mojo::InterfaceFactory<ProfileService> { |
| 35 public mojo::InterfaceFactory<leveldb::LevelDBService> { | |
| 36 public: | 31 public: |
| 37 ProfileApp(); | 32 ProfileApp(); |
| 38 ~ProfileApp() override; | 33 ~ProfileApp() override; |
| 39 | 34 |
| 40 // Currently, ProfileApp is run from within the chrome process. This means it | 35 // Currently, ProfileApp is run from within the chrome process. This means it |
| 41 // that the ApplicationLoader is registered during MojoShellContext startup, | 36 // that the ApplicationLoader is registered during MojoShellContext startup, |
| 42 // even though the application itself is not started. As soon as a | 37 // even though the application itself is not started. As soon as a |
| 43 // BrowserContext is created, the BrowserContext will choose a |user_id| for | 38 // BrowserContext is created, the BrowserContext will choose a |user_id| for |
| 44 // itself and call us to register the mapping from |user_id| to | 39 // itself and call us to register the mapping from |user_id| to |
| 45 // |profile_data_dir|. | 40 // |profile_data_dir|. |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 58 void Initialize(mojo::Connector* connector, | 53 void Initialize(mojo::Connector* connector, |
| 59 const std::string& url, | 54 const std::string& url, |
| 60 uint32_t id, | 55 uint32_t id, |
| 61 uint32_t user_id) override; | 56 uint32_t user_id) override; |
| 62 bool AcceptConnection(mojo::Connection* connection) override; | 57 bool AcceptConnection(mojo::Connection* connection) override; |
| 63 | 58 |
| 64 // |InterfaceFactory<ProfileService>| implementation: | 59 // |InterfaceFactory<ProfileService>| implementation: |
| 65 void Create(mojo::Connection* connection, | 60 void Create(mojo::Connection* connection, |
| 66 mojo::InterfaceRequest<ProfileService> request) override; | 61 mojo::InterfaceRequest<ProfileService> request) override; |
| 67 | 62 |
| 68 // |InterfaceFactory<LevelDBService>| implementation: | |
| 69 void Create(mojo::Connection* connection, | |
| 70 mojo::InterfaceRequest<leveldb::LevelDBService> request) override; | |
| 71 | |
| 72 mojo::TracingImpl tracing_; | 63 mojo::TracingImpl tracing_; |
| 73 | 64 |
| 74 scoped_ptr<ProfileService> profile_service_; | 65 scoped_ptr<ProfileService> profile_service_; |
| 75 mojo::BindingSet<ProfileService> profile_bindings_; | 66 mojo::BindingSet<ProfileService> profile_bindings_; |
| 76 | 67 |
| 77 scoped_ptr<leveldb::LevelDBService> leveldb_service_; | |
| 78 mojo::BindingSet<leveldb::LevelDBService> leveldb_bindings_; | |
| 79 | |
| 80 scoped_ptr<filesystem::LockTable> lock_table_; | 68 scoped_ptr<filesystem::LockTable> lock_table_; |
| 81 | 69 |
| 82 base::FilePath profile_data_dir_; | 70 base::FilePath profile_data_dir_; |
| 83 | 71 |
| 84 DISALLOW_COPY_AND_ASSIGN(ProfileApp); | 72 DISALLOW_COPY_AND_ASSIGN(ProfileApp); |
| 85 }; | 73 }; |
| 86 | 74 |
| 87 } // namespace profile | 75 } // namespace profile |
| 88 | 76 |
| 89 #endif // COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ | 77 #endif // COMPONENTS_PROFILE_SERVICE_PROFILE_APP_H_ |
| OLD | NEW |