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

Unified Diff: mash/screenlock/screenlock.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 | « mash/screenlock/screenlock.h ('k') | mash/session/main.cc » ('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 3283957dafa537557a37c0dd52b66a96720a2c9d..0e283424e5c8a77071fd4db62ae4adf17c698f0c 100644
--- a/mash/screenlock/screenlock.cc
+++ b/mash/screenlock/screenlock.cc
@@ -25,7 +25,7 @@ namespace {
class ScreenlockView : public views::WidgetDelegateView,
public views::ButtonListener {
public:
- explicit ScreenlockView(shell::Connector* connector)
+ explicit ScreenlockView(service_manager::Connector* connector)
: connector_(connector),
unlock_button_(
views::MdTextButton::Create(this, base::ASCIIToUTF16("Unlock"))) {
@@ -62,7 +62,7 @@ class ScreenlockView : public views::WidgetDelegateView,
session->UnlockScreen();
}
- shell::Connector* connector_;
+ service_manager::Connector* connector_;
views::MdTextButton* unlock_button_;
DISALLOW_COPY_AND_ASSIGN(ScreenlockView);
@@ -73,7 +73,7 @@ class ScreenlockView : public views::WidgetDelegateView,
Screenlock::Screenlock() {}
Screenlock::~Screenlock() {}
-void Screenlock::OnStart(const shell::Identity& identity) {
+void Screenlock::OnStart(const service_manager::Identity& identity) {
tracing_.Initialize(connector(), identity.name());
mash::session::mojom::SessionPtr session;
« no previous file with comments | « mash/screenlock/screenlock.h ('k') | mash/session/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698