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

Side by Side Diff: ash/wm/panels/panel_window_resizer.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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/wm/panels/panel_window_resizer.h" 5 #include "ash/wm/panels/panel_window_resizer.h"
6 6
7 #include "ash/common/wm_window.h"
8 #include "ash/public/cpp/shell_window_ids.h" 7 #include "ash/public/cpp/shell_window_ids.h"
9 #include "ash/public/cpp/window_properties.h" 8 #include "ash/public/cpp/window_properties.h"
10 #include "ash/root_window_controller.h" 9 #include "ash/root_window_controller.h"
11 #include "ash/shelf/wm_shelf.h" 10 #include "ash/shelf/wm_shelf.h"
12 #include "ash/shell.h" 11 #include "ash/shell.h"
13 #include "ash/wm/panels/panel_layout_manager.h" 12 #include "ash/wm/panels/panel_layout_manager.h"
14 #include "ash/wm/window_parenting_utils.h" 13 #include "ash/wm/window_parenting_utils.h"
15 #include "ash/wm/window_state.h" 14 #include "ash/wm/window_state.h"
15 #include "ash/wm_window.h"
16 #include "ui/base/hit_test.h" 16 #include "ui/base/hit_test.h"
17 #include "ui/base/ui_base_types.h" 17 #include "ui/base/ui_base_types.h"
18 #include "ui/display/display.h" 18 #include "ui/display/display.h"
19 #include "ui/display/screen.h" 19 #include "ui/display/screen.h"
20 20
21 namespace ash { 21 namespace ash {
22 22
23 namespace { 23 namespace {
24 24
25 const int kPanelSnapToLauncherDistance = 30; 25 const int kPanelSnapToLauncherDistance = 30;
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 198
199 void PanelWindowResizer::UpdateLauncherPosition() { 199 void PanelWindowResizer::UpdateLauncherPosition() {
200 if (panel_container_) { 200 if (panel_container_) {
201 PanelLayoutManager::Get(panel_container_) 201 PanelLayoutManager::Get(panel_container_)
202 ->shelf() 202 ->shelf()
203 ->UpdateIconPositionForPanel(GetTarget()); 203 ->UpdateIconPositionForPanel(GetTarget());
204 } 204 }
205 } 205 }
206 206
207 } // namespace ash 207 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_window_event_handler.cc ('k') | ash/wm/panels/panel_window_resizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698