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 "chrome/browser/ui/window_sizer.h" | 5 #include "chrome/browser/ui/window_sizer.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
11 #include "ash/test/ash_test_base.h" | 11 #include "ash/test/ash_test_base.h" |
12 #include "ash/test/test_shell_delegate.h" | 12 #include "ash/test/test_shell_delegate.h" |
13 #include "ash/wm/window_resizer.h" | 13 #include "ash/wm/window_resizer.h" |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
17 #include "chrome/browser/ui/window_sizer_common_unittest.h" | 17 #include "chrome/browser/ui/window_sizer_common_unittest.h" |
18 #include "chrome/test/base/testing_profile.h" | 18 #include "chrome/test/base/testing_profile.h" |
19 #include "chrome/test/base/test_browser_window.h" | 19 #include "chrome/test/base/test_browser_window.h" |
20 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
21 #include "content/test/render_view_test.h" | 21 #include "content/test/render_view_test.h" |
22 #include "content/test/test_browser_thread.h" | 22 #include "content/public/test/test_browser_thread.h" |
23 #include "testing/gtest/include/gtest/gtest.h" | 23 #include "testing/gtest/include/gtest/gtest.h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
25 #include "ui/aura/env.h" | 25 #include "ui/aura/env.h" |
26 #include "ui/aura/root_window.h" | 26 #include "ui/aura/root_window.h" |
27 #include "ui/aura/test/test_windows.h" | 27 #include "ui/aura/test/test_windows.h" |
28 | 28 |
29 | 29 |
30 namespace { | 30 namespace { |
31 | 31 |
32 typedef ash::test::AshTestBase WindowSizerTest; | 32 typedef ash::test::AshTestBase WindowSizerTest; |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 } | 710 } |
711 | 711 |
712 { // Check that a window which hangs out of the screen get moved back in. | 712 { // Check that a window which hangs out of the screen get moved back in. |
713 gfx::Rect window_bounds; | 713 gfx::Rect window_bounds; |
714 GetWindowBounds(tentwentyfour, tentwentyfour, gfx::Rect(), gfx::Rect(), | 714 GetWindowBounds(tentwentyfour, tentwentyfour, gfx::Rect(), gfx::Rect(), |
715 gfx::Rect(), DEFAULT, &window_bounds, NULL, | 715 gfx::Rect(), DEFAULT, &window_bounds, NULL, |
716 gfx::Rect(1020, 700, 100, 100)); | 716 gfx::Rect(1020, 700, 100, 100)); |
717 EXPECT_EQ(gfx::Rect(924, 668, 100, 100), window_bounds); | 717 EXPECT_EQ(gfx::Rect(924, 668, 100, 100), window_bounds); |
718 } | 718 } |
719 } | 719 } |
OLD | NEW |