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

Unified Diff: components/font_service/font_service_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/font_service/font_service_app.h ('k') | components/font_service/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/font_service/font_service_app.cc
diff --git a/components/font_service/font_service_app.cc b/components/font_service/font_service_app.cc
index c474baf5cd8091d6608a9bad528d09bbaeabe13e..946acb2ebe0be8981b885a957b123993a942f5aa 100644
--- a/components/font_service/font_service_app.cc
+++ b/components/font_service/font_service_app.cc
@@ -48,18 +48,18 @@ FontServiceApp::FontServiceApp() {}
FontServiceApp::~FontServiceApp() {}
-void FontServiceApp::OnStart(const shell::Identity& identity) {
+void FontServiceApp::OnStart(const service_manager::Identity& identity) {
tracing_.Initialize(connector(), identity.name());
}
-bool FontServiceApp::OnConnect(const shell::Identity& remote_identity,
- shell::InterfaceRegistry* registry) {
+bool FontServiceApp::OnConnect(const service_manager::Identity& remote_identity,
+ service_manager::InterfaceRegistry* registry) {
registry->AddInterface(this);
return true;
}
void FontServiceApp::Create(
- const shell::Identity& remote_identity,
+ const service_manager::Identity& remote_identity,
mojo::InterfaceRequest<mojom::FontService> request) {
bindings_.AddBinding(this, std::move(request));
}
« no previous file with comments | « components/font_service/font_service_app.h ('k') | components/font_service/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698