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 "ash/common/wm/panels/panel_window_resizer.h" | 5 #include "ash/common/wm/panels/panel_window_resizer.h" |
6 | 6 |
7 #include "ash/common/shelf/wm_shelf.h" | 7 #include "ash/common/shelf/wm_shelf.h" |
8 #include "ash/common/shell_window_ids.h" | 8 #include "ash/common/shell_window_ids.h" |
9 #include "ash/common/wm/panels/panel_layout_manager.h" | 9 #include "ash/common/wm/panels/panel_layout_manager.h" |
10 #include "ash/common/wm/window_parenting_utils.h" | 10 #include "ash/common/wm/window_parenting_utils.h" |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 if (initial_panel_container_ != panel_container_) | 191 if (initial_panel_container_ != panel_container_) |
192 PanelLayoutManager::Get(initial_panel_container_)->FinishDragging(); | 192 PanelLayoutManager::Get(initial_panel_container_)->FinishDragging(); |
193 if (panel_container_) | 193 if (panel_container_) |
194 PanelLayoutManager::Get(panel_container_)->FinishDragging(); | 194 PanelLayoutManager::Get(panel_container_)->FinishDragging(); |
195 } | 195 } |
196 | 196 |
197 void PanelWindowResizer::UpdateLauncherPosition() { | 197 void PanelWindowResizer::UpdateLauncherPosition() { |
198 if (panel_container_) { | 198 if (panel_container_) { |
199 PanelLayoutManager::Get(panel_container_) | 199 PanelLayoutManager::Get(panel_container_) |
200 ->shelf() | 200 ->shelf() |
201 ->UpdateIconPositionForWindow(GetTarget()); | 201 ->UpdateIconPositionForPanel(GetTarget()); |
202 } | 202 } |
203 } | 203 } |
204 | 204 |
205 } // namespace ash | 205 } // namespace ash |
OLD | NEW |