OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/wm/window_modality_controller.h" | 5 #include "ash/wm/window_modality_controller.h" |
6 | 6 |
7 #include "ash/test/aura_shell_test_base.h" | 7 #include "ash/test/aura_shell_test_base.h" |
8 #include "ash/wm/window_util.h" | 8 #include "ash/wm/window_util.h" |
9 #include "ui/aura/client/aura_constants.h" | 9 #include "ui/aura/client/aura_constants.h" |
10 #include "ui/aura/test/event_generator.h" | 10 #include "ui/aura/test/event_generator.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
138 { | 138 { |
139 // Clicking a point within w1 should activate w11. | 139 // Clicking a point within w1 should activate w11. |
140 aura::test::EventGenerator generator(gfx::Point(10, 10)); | 140 aura::test::EventGenerator generator(gfx::Point(10, 10)); |
141 generator.ClickLeftButton(); | 141 generator.ClickLeftButton(); |
142 EXPECT_TRUE(IsActiveWindow(w11.get())); | 142 EXPECT_TRUE(IsActiveWindow(w11.get())); |
143 } | 143 } |
144 } | 144 } |
145 | 145 |
146 | 146 |
147 } // namespace internal | 147 } // namespace internal |
148 } // namespace ash | 148 } // namespace ash |
oshima
2012/01/20 21:10:08
is this intentional?
dhollowa
2012/01/20 21:13:34
Yes, clang issues warnings for missing newlines.
| |
OLD | NEW |