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

Unified Diff: ash/accelerators/accelerator_commands_unittest.cc

Issue 169713003: Remove WindowState::IsNormalShowState() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | ash/root_window_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/accelerators/accelerator_commands_unittest.cc
diff --git a/ash/accelerators/accelerator_commands_unittest.cc b/ash/accelerators/accelerator_commands_unittest.cc
index c193b26832750a5dc02d0ab7c806bf44bf3c5e62..9ea116c77fbf363b6347da1f6cfd6a0d13ac019c 100644
--- a/ash/accelerators/accelerator_commands_unittest.cc
+++ b/ash/accelerators/accelerator_commands_unittest.cc
@@ -27,11 +27,11 @@ TEST_F(AcceleratorCommandsTest, ToggleMinimized) {
ToggleMinimized();
EXPECT_TRUE(window_state->IsMinimized());
- EXPECT_FALSE(window_state->IsNormalShowState());
+ EXPECT_FALSE(window_state->IsNormalShowType());
ToggleMinimized();
EXPECT_FALSE(window_state->IsMinimized());
- EXPECT_TRUE(window_state->IsNormalShowState());
+ EXPECT_TRUE(window_state->IsNormalShowType());
}
} // namespace accelerators
« no previous file with comments | « no previous file | ash/root_window_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698