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

Side by Side Diff: ash/root_window_controller_unittest.cc

Issue 11419271: Revert "Use WS_POPUP for ash_unittests" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/screen_ash_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/root_window_controller.h" 5 #include "ash/root_window_controller.h"
6 6
7 #include "ash/display/display_controller.h" 7 #include "ash/display/display_controller.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/shell_delegate.h" 9 #include "ash/shell_delegate.h"
10 #include "ash/shell_window_ids.h" 10 #include "ash/shell_window_ids.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 views::Widget* normal = CreateTestWidget(gfx::Rect(650, 10, 100, 100)); 113 views::Widget* normal = CreateTestWidget(gfx::Rect(650, 10, 100, 100));
114 EXPECT_EQ(root_windows[1], normal->GetNativeView()->GetRootWindow()); 114 EXPECT_EQ(root_windows[1], normal->GetNativeView()->GetRootWindow());
115 EXPECT_EQ("650,10 100x100", normal->GetWindowBoundsInScreen().ToString()); 115 EXPECT_EQ("650,10 100x100", normal->GetWindowBoundsInScreen().ToString());
116 EXPECT_EQ("50,10 100x100", 116 EXPECT_EQ("50,10 100x100",
117 normal->GetNativeView()->GetBoundsInRootWindow().ToString()); 117 normal->GetNativeView()->GetBoundsInRootWindow().ToString());
118 118
119 views::Widget* maximized = CreateTestWidget(gfx::Rect(700, 10, 100, 100)); 119 views::Widget* maximized = CreateTestWidget(gfx::Rect(700, 10, 100, 100));
120 maximized->Maximize(); 120 maximized->Maximize();
121 EXPECT_EQ(root_windows[1], maximized->GetNativeView()->GetRootWindow()); 121 EXPECT_EQ(root_windows[1], maximized->GetNativeView()->GetRootWindow());
122 122 #if !defined(OS_WIN)
123 // TODO(oshima): Window reports smaller screen size. Investigate why.
123 EXPECT_EQ("600,0 500x500", maximized->GetWindowBoundsInScreen().ToString()); 124 EXPECT_EQ("600,0 500x500", maximized->GetWindowBoundsInScreen().ToString());
124 EXPECT_EQ("0,0 500x500", 125 EXPECT_EQ("0,0 500x500",
125 maximized->GetNativeView()->GetBoundsInRootWindow().ToString()); 126 maximized->GetNativeView()->GetBoundsInRootWindow().ToString());
127 #endif
126 128
127 views::Widget* minimized = CreateTestWidget(gfx::Rect(800, 10, 100, 100)); 129 views::Widget* minimized = CreateTestWidget(gfx::Rect(800, 10, 100, 100));
128 minimized->Minimize(); 130 minimized->Minimize();
129 EXPECT_EQ(root_windows[1], minimized->GetNativeView()->GetRootWindow()); 131 EXPECT_EQ(root_windows[1], minimized->GetNativeView()->GetRootWindow());
130 EXPECT_EQ("800,10 100x100", 132 EXPECT_EQ("800,10 100x100",
131 minimized->GetWindowBoundsInScreen().ToString()); 133 minimized->GetWindowBoundsInScreen().ToString());
132 134
133 views::Widget* fullscreen = CreateTestWidget(gfx::Rect(900, 10, 100, 100)); 135 views::Widget* fullscreen = CreateTestWidget(gfx::Rect(900, 10, 100, 100));
134 fullscreen->SetFullscreen(true); 136 fullscreen->SetFullscreen(true);
135 EXPECT_EQ(root_windows[1], fullscreen->GetNativeView()->GetRootWindow()); 137 EXPECT_EQ(root_windows[1], fullscreen->GetNativeView()->GetRootWindow());
136 138 #if !defined(OS_WIN)
139 // TODO(oshima): Window reports smaller screen size. Investigate why.
137 EXPECT_EQ("600,0 500x500", 140 EXPECT_EQ("600,0 500x500",
138 fullscreen->GetWindowBoundsInScreen().ToString()); 141 fullscreen->GetWindowBoundsInScreen().ToString());
139 EXPECT_EQ("0,0 500x500", 142 EXPECT_EQ("0,0 500x500",
140 fullscreen->GetNativeView()->GetBoundsInRootWindow().ToString()); 143 fullscreen->GetNativeView()->GetBoundsInRootWindow().ToString());
144 #endif
141 145
142 // Make sure a window that will delete itself when losing focus 146 // Make sure a window that will delete itself when losing focus
143 // will not crash. 147 // will not crash.
144 aura::WindowTracker tracker; 148 aura::WindowTracker tracker;
145 DeleteOnBlurDelegate delete_on_blur_delegate; 149 DeleteOnBlurDelegate delete_on_blur_delegate;
146 aura::Window* d2 = CreateTestWindowInShellWithDelegate( 150 aura::Window* d2 = CreateTestWindowInShellWithDelegate(
147 &delete_on_blur_delegate, 0, gfx::Rect(50, 50, 100, 100)); 151 &delete_on_blur_delegate, 0, gfx::Rect(50, 50, 100, 100));
148 delete_on_blur_delegate.set_window(d2); 152 delete_on_blur_delegate.set_window(d2);
149 aura::client::GetFocusClient(root_windows[0])->FocusWindow(d2, NULL); 153 aura::client::GetFocusClient(root_windows[0])->FocusWindow(d2, NULL);
150 tracker.Add(d2); 154 tracker.Add(d2);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 views::Widget* session_modal_widget = 308 views::Widget* session_modal_widget =
305 CreateModalWidget(gfx::Rect(300, 10, 100, 100)); 309 CreateModalWidget(gfx::Rect(300, 10, 100, 100));
306 EXPECT_EQ(Shell::GetContainer(controller->root_window(), 310 EXPECT_EQ(Shell::GetContainer(controller->root_window(),
307 internal::kShellWindowId_SystemModalContainer)->layout_manager(), 311 internal::kShellWindowId_SystemModalContainer)->layout_manager(),
308 controller->GetSystemModalLayoutManager( 312 controller->GetSystemModalLayoutManager(
309 session_modal_widget->GetNativeView())); 313 session_modal_widget->GetNativeView()));
310 } 314 }
311 315
312 } // namespace test 316 } // namespace test
313 } // namespace ash 317 } // namespace ash
OLDNEW
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/screen_ash_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698