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

Side by Side Diff: chrome/browser/ui/ash/window_positioner_unittest.cc

Issue 2118593002: mash: Migrate ShellDelegate ownership and access to WmShell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 years, 5 months 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
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/common/wm/window_positioner.h" 5 #include "ash/common/wm/window_positioner.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "ash/aura/wm_shell_aura.h"
10 #include "ash/common/wm/window_resizer.h" 9 #include "ash/common/wm/window_resizer.h"
10 #include "ash/common/wm_shell.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"
13 #include "base/compiler_specific.h"
14 #include "base/logging.h" 12 #include "base/logging.h"
15 #include "base/macros.h" 13 #include "base/macros.h"
16 #include "chrome/browser/ui/browser.h" 14 #include "chrome/browser/ui/browser.h"
17 #include "chrome/test/base/test_browser_window_aura.h" 15 #include "chrome/test/base/test_browser_window_aura.h"
18 #include "chrome/test/base/testing_profile.h" 16 #include "chrome/test/base/testing_profile.h"
19 #include "content/public/test/render_view_test.h" 17 #include "content/public/test/render_view_test.h"
20 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
21 #include "ui/aura/env.h" 19 #include "ui/aura/env.h"
22 #include "ui/aura/test/test_windows.h" 20 #include "ui/aura/test/test_windows.h"
23 #include "ui/aura/window_event_dispatcher.h" 21 #include "ui/aura/window_event_dispatcher.h"
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 221
224 // Check that the popup is placed full screen. 222 // Check that the popup is placed full screen.
225 gfx::Rect full = window_positioner()->GetPopupPosition(pop_position); 223 gfx::Rect full = window_positioner()->GetPopupPosition(pop_position);
226 EXPECT_EQ(gfx::Rect(work_area.x(), work_area.y(), 224 EXPECT_EQ(gfx::Rect(work_area.x(), work_area.y(),
227 pop_position.width(), pop_position.height()), 225 pop_position.width(), pop_position.height()),
228 full); 226 full);
229 } 227 }
230 228
231 } // namespace test 229 } // namespace test
232 } // namespace ash 230 } // namespace ash
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/system_tray_delegate_chromeos.cc ('k') | chrome/browser/ui/window_sizer/window_sizer_ash_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698