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

Unified Diff: ash/wm/window_cycle_controller_unittest.cc

Issue 2893643003: [mus+ash] Removes WmWindow from ash/wm/window_cycle_* (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash/wm/window_cycle_* (nits) Created 3 years, 7 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 | « ash/wm/window_cycle_controller.cc ('k') | ash/wm/window_cycle_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_cycle_controller_unittest.cc
diff --git a/ash/wm/window_cycle_controller_unittest.cc b/ash/wm/window_cycle_controller_unittest.cc
index d195954014c8b88e09a210ea8228fff87a1769a7..1e0e856ecce2763f0b59ae2f24a5bea442f98725 100644
--- a/ash/wm/window_cycle_controller_unittest.cc
+++ b/ash/wm/window_cycle_controller_unittest.cc
@@ -73,7 +73,7 @@ class EventCounter : public ui::EventHandler {
};
bool IsWindowMinimized(aura::Window* window) {
- return WmWindow::Get(window)->GetWindowState()->IsMinimized();
+ return wm::GetWindowState(window)->IsMinimized();
}
} // namespace
@@ -106,7 +106,7 @@ class WindowCycleControllerTest : public test::AshTestBase {
}
const aura::Window::Windows GetWindows(WindowCycleController* controller) {
- return WmWindow::ToAuraWindows(controller->window_cycle_list()->windows());
+ return controller->window_cycle_list()->windows();
}
const views::Widget* GetWindowCycleListWidget() const {
« no previous file with comments | « ash/wm/window_cycle_controller.cc ('k') | ash/wm/window_cycle_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698