| 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/root_window_controller.h" | 5 #include "ash/root_window_controller.h" |
| 6 #include "ash/screen_ash.h" | 6 #include "ash/screen_ash.h" |
| 7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
| 8 #include "ash/test/ash_test_base.h" | 8 #include "ash/test/ash_test_base.h" |
| 9 #include "ash/test/shell_test_api.h" | 9 #include "ash/test/shell_test_api.h" |
| 10 #include "ash/wm/mru_window_tracker.h" | 10 #include "ash/wm/mru_window_tracker.h" |
| 11 #include "ash/wm/window_selector_controller.h" | 11 #include "ash/wm/overview/window_selector_controller.h" |
| 12 #include "ash/wm/window_util.h" | 12 #include "ash/wm/window_util.h" |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
| 16 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
| 17 #include "ui/aura/client/aura_constants.h" | 17 #include "ui/aura/client/aura_constants.h" |
| 18 #include "ui/aura/root_window.h" | 18 #include "ui/aura/root_window.h" |
| 19 #include "ui/aura/test/event_generator.h" | 19 #include "ui/aura/test/event_generator.h" |
| 20 #include "ui/aura/test/test_window_delegate.h" | 20 #include "ui/aura/test/test_window_delegate.h" |
| 21 #include "ui/aura/test/test_windows.h" | 21 #include "ui/aura/test/test_windows.h" |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 root_windows[0]->bounds().Contains( | 193 root_windows[0]->bounds().Contains( |
| 194 ToEnclosingRect(GetTransformedBounds(window2.get()))); | 194 ToEnclosingRect(GetTransformedBounds(window2.get()))); |
| 195 root_windows[1]->bounds().Contains( | 195 root_windows[1]->bounds().Contains( |
| 196 ToEnclosingRect(GetTransformedBounds(window3.get()))); | 196 ToEnclosingRect(GetTransformedBounds(window3.get()))); |
| 197 root_windows[1]->bounds().Contains( | 197 root_windows[1]->bounds().Contains( |
| 198 ToEnclosingRect(GetTransformedBounds(window4.get()))); | 198 ToEnclosingRect(GetTransformedBounds(window4.get()))); |
| 199 } | 199 } |
| 200 | 200 |
| 201 } // namespace internal | 201 } // namespace internal |
| 202 } // namespace ash | 202 } // namespace ash |
| OLD | NEW |