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

Unified Diff: components/leveldb/leveldb_app.cc

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/leveldb_app.h ('k') | components/leveldb/leveldb_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/leveldb_app.cc
diff --git a/components/leveldb/leveldb_app.cc b/components/leveldb/leveldb_app.cc
index 6fd479c6876cd9ef969f392e12206e4283af2f40..d43029b98cae69469478afd163cf43d1d4eaae6e 100644
--- a/components/leveldb/leveldb_app.cc
+++ b/components/leveldb/leveldb_app.cc
@@ -14,17 +14,17 @@ LevelDBApp::LevelDBApp() {}
LevelDBApp::~LevelDBApp() {}
-void LevelDBApp::OnStart(const shell::Identity& identity) {
+void LevelDBApp::OnStart(const service_manager::Identity& identity) {
tracing_.Initialize(connector(), identity.name());
}
-bool LevelDBApp::OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) {
+bool LevelDBApp::OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) {
registry->AddInterface<mojom::LevelDBService>(this);
return true;
}
-void LevelDBApp::Create(const shell::Identity& remote_identity,
+void LevelDBApp::Create(const service_manager::Identity& remote_identity,
leveldb::mojom::LevelDBServiceRequest request) {
if (!service_)
service_.reset(new LevelDBServiceImpl(base::ThreadTaskRunnerHandle::Get()));
« no previous file with comments | « components/leveldb/leveldb_app.h ('k') | components/leveldb/leveldb_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698