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

Unified Diff: mash/screenlock/screenlock.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 149dcc25448ae5ffbc131bd5a06d22cccf2df7a6..69ef2b03cd6cd04b07ffa8a667962ed6b6ec4944 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(mojo::Connector* connector)
+ explicit ScreenlockView(shell::Connector* connector)
: connector_(connector),
unlock_button_(
new views::LabelButton(this, base::ASCIIToUTF16("Unlock"))) {
@@ -64,7 +64,7 @@ class ScreenlockView : public views::WidgetDelegateView,
session->UnlockScreen();
}
- mojo::Connector* connector_;
+ shell::Connector* connector_;
views::LabelButton* unlock_button_;
DISALLOW_COPY_AND_ASSIGN(ScreenlockView);
@@ -75,8 +75,8 @@ class ScreenlockView : public views::WidgetDelegateView,
Screenlock::Screenlock() {}
Screenlock::~Screenlock() {}
-void Screenlock::Initialize(mojo::Connector* connector,
- const mojo::Identity& identity,
+void Screenlock::Initialize(shell::Connector* connector,
+ const shell::Identity& identity,
uint32_t id) {
tracing_.Initialize(connector, identity.name());
« 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