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

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

Issue 2274333002: ash: Move more code from Shelf to WmShelf (Closed)
Patch Set: review comments Created 4 years, 3 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
« no previous file with comments | « ash/common/shelf/wm_shelf.cc ('k') | ash/shelf/shelf_widget_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
OLDNEW
« no previous file with comments | « ash/common/shelf/wm_shelf.cc ('k') | ash/shelf/shelf_widget_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698