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

Unified Diff: ash/accelerators/accelerator_interactive_uitest_chromeos.cc

Issue 2169533002: mash: Migrate shelf app list button to wm common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move files, cleanup Created 4 years, 5 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: ash/accelerators/accelerator_interactive_uitest_chromeos.cc
diff --git a/ash/accelerators/accelerator_interactive_uitest_chromeos.cc b/ash/accelerators/accelerator_interactive_uitest_chromeos.cc
index 58d237407f2110f42a399c51569f0bfc19972fbf..c4f26d1dba99c569656db7a8b74f6db94f0c8cb8 100644
--- a/ash/accelerators/accelerator_interactive_uitest_chromeos.cc
+++ b/ash/accelerators/accelerator_interactive_uitest_chromeos.cc
@@ -198,11 +198,11 @@ TEST_F(AcceleratorInteractiveUITest, MAYBE_ChromeOsAccelerators) {
// Tests the app list accelerator.
TEST_F(AcceleratorInteractiveUITest, MAYBE_ToggleAppList) {
- EXPECT_FALSE(Shell::GetInstance()->GetAppListTargetVisibility());
+ EXPECT_FALSE(WmShell::Get()->GetAppListTargetVisibility());
SendKeyPressSync(ui::VKEY_LWIN, false, false, false);
- EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility());
+ EXPECT_TRUE(WmShell::Get()->GetAppListTargetVisibility());
SendKeyPressSync(ui::VKEY_LWIN, false, false, false);
- EXPECT_FALSE(Shell::GetInstance()->GetAppListTargetVisibility());
+ EXPECT_FALSE(WmShell::Get()->GetAppListTargetVisibility());
}
} // namespace test

Powered by Google App Engine
This is Rietveld 408576698