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

Unified Diff: chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc

Issue 11421006: Desktop aura: Break aura::Window::SetParent in two. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ash_unittests Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc
diff --git a/chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc b/chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc
index 3fbafb276015475557c382175e1afade0469d9fe..51244a8b2792852dcb59c58676e276cb715c17f6 100644
--- a/chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc
+++ b/chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc
@@ -445,16 +445,13 @@ TEST_F(WindowSizerTest, LastWindowOffscreenWithNonAggressiveRepositioning) {
// Test the placement of newly created windows.
TEST_F(WindowSizerTestWithBrowser, PlaceNewWindows) {
// Create a dummy window.
- scoped_ptr<aura::Window> window(
- aura::test::CreateTestWindowWithId(0, NULL));
+ scoped_ptr<aura::Window> window(CreateTestWindowInShellWithId(0));
window->SetBounds(gfx::Rect(16, 32, 640, 320));
- scoped_ptr<aura::Window> popup(
- aura::test::CreateTestWindowWithId(1, NULL));
+ scoped_ptr<aura::Window> popup(CreateTestWindowInShellWithId(1));
popup->SetBounds(gfx::Rect(16, 32, 128, 256));
- scoped_ptr<aura::Window> panel(
- aura::test::CreateTestWindowWithId(2, NULL));
+ scoped_ptr<aura::Window> panel(CreateTestWindowInShellWithId(2));
panel->SetBounds(gfx::Rect(32, 48, 256, 512));
// Create a browser which we can use to pass into the GetWindowBounds
@@ -557,8 +554,7 @@ TEST_F(WindowSizerTestWithBrowser, PlaceNewWindows) {
// Test that the show state is properly returned for non default cases.
TEST_F(WindowSizerTestWithBrowser, TestShowState) {
// Creating a browser & window to play with.
- scoped_ptr<aura::Window> window(
- aura::test::CreateTestWindowWithId(0, NULL));
+ scoped_ptr<aura::Window> window(CreateTestWindowInShellWithId(0));
window->SetBounds(gfx::Rect(16, 32, 640, 320));
scoped_ptr<TestingProfile> profile(new TestingProfile());
@@ -570,8 +566,7 @@ TEST_F(WindowSizerTestWithBrowser, TestShowState) {
scoped_ptr<Browser> browser(new Browser(window_params));
// Create also a popup browser since that behaves different.
- scoped_ptr<aura::Window> popup(
- aura::test::CreateTestWindowWithId(1, NULL));
+ scoped_ptr<aura::Window> popup(CreateTestWindowInShellWithId(1));
popup->SetBounds(gfx::Rect(16, 32, 128, 256));
scoped_ptr<BrowserWindow> browser_popup(
@@ -608,8 +603,7 @@ TEST_F(WindowSizerTestWithBrowser, TestShowState) {
// Now create a top level window and check again for both. Only the tabbed
// window should follow the top level window's state.
// Creating a browser & window to play with.
- scoped_ptr<aura::Window> window2(
- aura::test::CreateTestWindowWithId(0, NULL));
+ scoped_ptr<aura::Window> window2(CreateTestWindowInShellWithId(0));
window->SetBounds(gfx::Rect(16, 32, 640, 320));
scoped_ptr<BrowserWindow> browser_window2(
@@ -635,8 +629,7 @@ TEST_F(WindowSizerTestWithBrowser, TestShowState) {
// Test that the default show state override behavior is properly handled.
TEST_F(WindowSizerTestWithBrowser, TestShowStateDefaults) {
// Creating a browser & window to play with.
- scoped_ptr<aura::Window> window(
- aura::test::CreateTestWindowWithId(0, NULL));
+ scoped_ptr<aura::Window> window(CreateTestWindowInShellWithId(0));
window->SetBounds(gfx::Rect(16, 32, 640, 320));
scoped_ptr<TestingProfile> profile(new TestingProfile());
@@ -649,8 +642,7 @@ TEST_F(WindowSizerTestWithBrowser, TestShowStateDefaults) {
// Create also a popup browser since that behaves slightly different for
// defaults.
- scoped_ptr<aura::Window> popup(
- aura::test::CreateTestWindowWithId(1, NULL));
+ scoped_ptr<aura::Window> popup(CreateTestWindowInShellWithId(1));
popup->SetBounds(gfx::Rect(16, 32, 128, 256));
scoped_ptr<BrowserWindow> browser_popup(
« no previous file with comments | « chrome/browser/ui/ash/window_positioner_unittest.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698