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

Unified Diff: components/leveldb/leveldb_app.h

Issue 2420253002: Rename shell namespace to service_manager (Closed)
Patch Set: . Created 4 years, 2 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
« no previous file with comments | « components/leveldb/env_mojo.cc ('k') | components/leveldb/leveldb_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/leveldb_app.h
diff --git a/components/leveldb/leveldb_app.h b/components/leveldb/leveldb_app.h
index 341b4d3ff3fe148a7ab69bb84122d37e41b3b877..9ccca11bde89ebcfa02325a0de104b98a20b3095 100644
--- a/components/leveldb/leveldb_app.h
+++ b/components/leveldb/leveldb_app.h
@@ -15,20 +15,21 @@
namespace leveldb {
-class LevelDBApp : public shell::Service,
- public shell::InterfaceFactory<mojom::LevelDBService> {
+class LevelDBApp
+ : public service_manager::Service,
+ public service_manager::InterfaceFactory<mojom::LevelDBService> {
public:
LevelDBApp();
~LevelDBApp() override;
private:
// |Service| override:
- void OnStart(const shell::Identity& identity) override;
- bool OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) override;
+ void OnStart(const service_manager::Identity& identity) override;
+ bool OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) override;
// |InterfaceFactory<mojom::LevelDBService>| implementation:
- void Create(const shell::Identity& remote_identity,
+ void Create(const service_manager::Identity& remote_identity,
leveldb::mojom::LevelDBServiceRequest request) override;
tracing::Provider tracing_;
« no previous file with comments | « components/leveldb/env_mojo.cc ('k') | components/leveldb/leveldb_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698