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

Unified Diff: chrome/browser/chromeos/login/lock/screen_locker.cc

Issue 2738133003: Promotes a handful of members from WmShell to Shell (Closed)
Patch Set: merge Created 3 years, 9 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
Index: chrome/browser/chromeos/login/lock/screen_locker.cc
diff --git a/chrome/browser/chromeos/login/lock/screen_locker.cc b/chrome/browser/chromeos/login/lock/screen_locker.cc
index 9e6b0fcf00c273973e0ff91fea3e6cc7bb98661a..b7011cc4d7fc05e53791230eca409da004e8f33d 100644
--- a/chrome/browser/chromeos/login/lock/screen_locker.cc
+++ b/chrome/browser/chromeos/login/lock/screen_locker.cc
@@ -504,7 +504,7 @@ ScreenLocker::~ScreenLocker() {
ClearErrors();
VLOG(1) << "Moving wallpaper to unlocked container";
- ash::WmShell::Get()->wallpaper_controller()->MoveToUnlockedContainer();
+ ash::Shell::GetInstance()->wallpaper_controller()->MoveToUnlockedContainer();
screen_locker_ = NULL;
bool state = false;
@@ -538,7 +538,7 @@ void ScreenLocker::ScreenLockReady() {
UMA_HISTOGRAM_TIMES("ScreenLocker.ScreenLockTime", delta);
VLOG(1) << "Moving wallpaper to locked container";
- ash::WmShell::Get()->wallpaper_controller()->MoveToLockedContainer();
+ ash::Shell::GetInstance()->wallpaper_controller()->MoveToLockedContainer();
bool state = true;
VLOG(1) << "Emitting SCREEN_LOCK_STATE_CHANGED with state=" << state;

Powered by Google App Engine
This is Rietveld 408576698