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

Unified Diff: mash/screenlock/screenlock.cc

Issue 2390013002: Rename mojo: to service: (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 | « mash/screenlock/manifest.json ('k') | mash/session/manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/screenlock/screenlock.cc
diff --git a/mash/screenlock/screenlock.cc b/mash/screenlock/screenlock.cc
index 96ad20d9b5ff4957897c88a1494378a74dc44fa8..c78934dc8b1cd2fce6ed467e4c69a7413d9fae84 100644
--- a/mash/screenlock/screenlock.cc
+++ b/mash/screenlock/screenlock.cc
@@ -59,7 +59,7 @@ class ScreenlockView : public views::WidgetDelegateView,
void ButtonPressed(views::Button* sender, const ui::Event& event) override {
DCHECK_EQ(sender, unlock_button_);
mash::session::mojom::SessionPtr session;
- connector_->ConnectToInterface("mojo:mash_session", &session);
+ connector_->ConnectToInterface("service:mash_session", &session);
session->UnlockScreen();
}
@@ -78,7 +78,7 @@ void Screenlock::OnStart(const shell::Identity& identity) {
tracing_.Initialize(connector(), identity.name());
mash::session::mojom::SessionPtr session;
- connector()->ConnectToInterface("mojo:mash_session", &session);
+ connector()->ConnectToInterface("service:mash_session", &session);
session->AddScreenlockStateListener(
bindings_.CreateInterfacePtrAndBind(this));
« no previous file with comments | « mash/screenlock/manifest.json ('k') | mash/session/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698