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

Unified Diff: chrome/browser/chromeos/accessibility/sticky_keys_browsertest.cc

Issue 2750483005: Moves app_list() and related functions from Shell to WmShell (Closed)
Patch Set: dont explicitly delete 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/accessibility/sticky_keys_browsertest.cc
diff --git a/chrome/browser/chromeos/accessibility/sticky_keys_browsertest.cc b/chrome/browser/chromeos/accessibility/sticky_keys_browsertest.cc
index 986be19774ffd96c3ba2d8a463f8f78a47a1eb65..5b33159e5464629e8a541339358162dd66c13532 100644
--- a/chrome/browser/chromeos/accessibility/sticky_keys_browsertest.cc
+++ b/chrome/browser/chromeos/accessibility/sticky_keys_browsertest.cc
@@ -163,7 +163,7 @@ IN_PROC_BROWSER_TEST_F(StickyKeysBrowserTest, SearchLeftOmnibox) {
// Make sure that the AppList is not erroneously displayed and the omnibox
// doesn't lose focus.
- EXPECT_FALSE(ash::WmShell::Get()->GetAppListTargetVisibility());
+ EXPECT_FALSE(ash::Shell::Get()->GetAppListTargetVisibility());
EXPECT_TRUE(omnibox->GetNativeView()->HasFocus());
// Type 'foo'.
@@ -177,14 +177,14 @@ IN_PROC_BROWSER_TEST_F(StickyKeysBrowserTest, SearchLeftOmnibox) {
ASSERT_EQ(3U, start);
ASSERT_EQ(3U, end);
- EXPECT_FALSE(ash::WmShell::Get()->GetAppListTargetVisibility());
+ EXPECT_FALSE(ash::Shell::Get()->GetAppListTargetVisibility());
EXPECT_TRUE(omnibox->GetNativeView()->HasFocus());
// Hit Home by sequencing Search (left Windows) and Left (arrow).
SendKeyPress(ui::VKEY_LWIN);
SendKeyPress(ui::VKEY_LEFT);
- EXPECT_FALSE(ash::WmShell::Get()->GetAppListTargetVisibility());
+ EXPECT_FALSE(ash::Shell::Get()->GetAppListTargetVisibility());
EXPECT_TRUE(omnibox->GetNativeView()->HasFocus());
// Verify caret moved to the beginning.
« no previous file with comments | « ash/wm/overview/window_selector_unittest.cc ('k') | chrome/browser/ui/ash/app_list/app_list_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698