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/window_sizer.h" | 5 #include "chrome/browser/ui/window_sizer/window_sizer.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/wm/window_positioner.h" | 8 #include "ash/wm/window_positioner.h" |
9 #include "ash/wm/window_state.h" | 9 #include "ash/wm/window_state.h" |
10 #include "ash/wm_window.h" | |
11 #include "chrome/browser/ui/ash/ash_util.h" | 10 #include "chrome/browser/ui/ash/ash_util.h" |
12 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_window.h" | 12 #include "chrome/browser/ui/browser_window.h" |
14 #include "ui/aura/window.h" | 13 #include "ui/aura/window.h" |
15 #include "ui/aura/window_event_dispatcher.h" | 14 #include "ui/aura/window_event_dispatcher.h" |
16 #include "ui/display/display.h" | 15 #include "ui/display/display.h" |
17 #include "ui/display/screen.h" | 16 #include "ui/display/screen.h" |
18 | 17 |
19 bool WindowSizer::GetBrowserBoundsAsh(gfx::Rect* bounds, | 18 bool WindowSizer::GetBrowserBoundsAsh(gfx::Rect* bounds, |
20 ui::WindowShowState* show_state) const { | 19 ui::WindowShowState* show_state) const { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 105 |
107 // The |browser_window| is non NULL when this is called after | 106 // The |browser_window| is non NULL when this is called after |
108 // browser's aura window is created. | 107 // browser's aura window is created. |
109 aura::Window* browser_window = | 108 aura::Window* browser_window = |
110 browser_->window() ? browser_->window()->GetNativeWindow() : NULL; | 109 browser_->window() ? browser_->window()->GetNativeWindow() : NULL; |
111 | 110 |
112 ash::WindowPositioner::GetBoundsAndShowStateForNewWindow( | 111 ash::WindowPositioner::GetBoundsAndShowStateForNewWindow( |
113 browser_window, is_saved_bounds, passed_show_state, bounds_in_screen, | 112 browser_window, is_saved_bounds, passed_show_state, bounds_in_screen, |
114 show_state); | 113 show_state); |
115 } | 114 } |
OLD | NEW |