OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/first_run/first_run_helper.h" | 5 #include "ash/first_run/first_run_helper.h" |
6 | 6 |
7 #include "ash/first_run/desktop_cleaner.h" | 7 #include "ash/first_run/desktop_cleaner.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/shell_window_ids.h" | 9 #include "ash/shell_window_ids.h" |
10 #include "ash/test/ash_test_base.h" | 10 #include "ash/test/ash_test_base.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 virtual void TearDown() OVERRIDE { | 73 virtual void TearDown() OVERRIDE { |
74 EXPECT_TRUE(helper_.get()); | 74 EXPECT_TRUE(helper_.get()); |
75 helper_.reset(); | 75 helper_.reset(); |
76 CheckContainersAreVisible(); | 76 CheckContainersAreVisible(); |
77 AshTestBase::TearDown(); | 77 AshTestBase::TearDown(); |
78 } | 78 } |
79 | 79 |
80 void CheckContainersAreVisible() const { | 80 void CheckContainersAreVisible() const { |
81 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); | 81 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); |
82 std::vector<int> containers_to_check = | 82 std::vector<int> containers_to_check = |
83 internal::DesktopCleaner::GetContainersToHideForTest(); | 83 DesktopCleaner::GetContainersToHideForTest(); |
84 for (size_t i = 0; i < containers_to_check.size(); ++i) { | 84 for (size_t i = 0; i < containers_to_check.size(); ++i) { |
85 aura::Window* container = | 85 aura::Window* container = |
86 Shell::GetContainer(root_window, containers_to_check[i]); | 86 Shell::GetContainer(root_window, containers_to_check[i]); |
87 EXPECT_TRUE(container->IsVisible()); | 87 EXPECT_TRUE(container->IsVisible()); |
88 } | 88 } |
89 } | 89 } |
90 | 90 |
91 void CheckContainersAreHidden() const { | 91 void CheckContainersAreHidden() const { |
92 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); | 92 aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow(); |
93 std::vector<int> containers_to_check = | 93 std::vector<int> containers_to_check = |
94 internal::DesktopCleaner::GetContainersToHideForTest(); | 94 DesktopCleaner::GetContainersToHideForTest(); |
95 for (size_t i = 0; i < containers_to_check.size(); ++i) { | 95 for (size_t i = 0; i < containers_to_check.size(); ++i) { |
96 aura::Window* container = | 96 aura::Window* container = |
97 Shell::GetContainer(root_window, containers_to_check[i]); | 97 Shell::GetContainer(root_window, containers_to_check[i]); |
98 EXPECT_TRUE(!container->IsVisible()); | 98 EXPECT_TRUE(!container->IsVisible()); |
99 } | 99 } |
100 } | 100 } |
101 | 101 |
102 FirstRunHelper* helper() { return helper_.get(); } | 102 FirstRunHelper* helper() { return helper_.get(); } |
103 | 103 |
104 int cancelled_times() const { return cancelled_times_; } | 104 int cancelled_times() const { return cancelled_times_; } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 EXPECT_TRUE(overlay_window->HasFocus()); | 138 EXPECT_TRUE(overlay_window->HasFocus()); |
139 int mouse_events; | 139 int mouse_events; |
140 overlay_window->SetEventFilter(new CountingEventHandler(&mouse_events)); | 140 overlay_window->SetEventFilter(new CountingEventHandler(&mouse_events)); |
141 GetEventGenerator().PressLeftButton(); | 141 GetEventGenerator().PressLeftButton(); |
142 GetEventGenerator().ReleaseLeftButton(); | 142 GetEventGenerator().ReleaseLeftButton(); |
143 EXPECT_EQ(mouse_events, 2); | 143 EXPECT_EQ(mouse_events, 2); |
144 } | 144 } |
145 | 145 |
146 } // namespace test | 146 } // namespace test |
147 } // namespace ash | 147 } // namespace ash |
OLD | NEW |