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

Unified Diff: chrome/browser/chromeos/login/kiosk_browsertest.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/kiosk_browsertest.cc
diff --git a/chrome/browser/chromeos/login/kiosk_browsertest.cc b/chrome/browser/chromeos/login/kiosk_browsertest.cc
index 6db4b382265ebf9c3c19443160a0148766257ca1..5d95dd657c8cdc34d3abbfb0c1ff166156cccc97 100644
--- a/chrome/browser/chromeos/login/kiosk_browsertest.cc
+++ b/chrome/browser/chromeos/login/kiosk_browsertest.cc
@@ -8,7 +8,7 @@
#include "apps/test/app_window_waiter.h"
#include "ash/common/wallpaper/wallpaper_controller.h"
#include "ash/common/wallpaper/wallpaper_controller_observer.h"
-#include "ash/common/wm_shell.h"
+#include "ash/shell.h"
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/location.h"
@@ -2329,11 +2329,11 @@ class KioskHiddenWebUITest : public KioskTest,
LoginDisplayHostImpl::DisableRestrictiveProxyCheckForTest();
KioskTest::SetUpOnMainThread();
- ash::WmShell::Get()->wallpaper_controller()->AddObserver(this);
+ ash::Shell::GetInstance()->wallpaper_controller()->AddObserver(this);
}
void TearDownOnMainThread() override {
- ash::WmShell::Get()->wallpaper_controller()->RemoveObserver(this);
+ ash::Shell::GetInstance()->wallpaper_controller()->RemoveObserver(this);
KioskTest::TearDownOnMainThread();
}

Powered by Google App Engine
This is Rietveld 408576698