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

Side by Side Diff: ash/wm/panels/panel_layout_manager.h

Issue 2907853002: [mus+ash] Removes WmWindow from ash/shelf and ash/shell (Closed)
Patch Set: [mus+ash] Removes WmWindow from ash/shelf and ash/shell (removed some more wm_window.h) Created 3 years, 7 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/wm/panels/panel_frame_view.cc ('k') | ash/wm/panels/panel_layout_manager.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 #ifndef ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ 5 #ifndef ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_
6 #define ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ 6 #define ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 void OnWindowAddedToLayout(aura::Window* child) override; 89 void OnWindowAddedToLayout(aura::Window* child) override;
90 void OnWillRemoveWindowFromLayout(aura::Window* child) override; 90 void OnWillRemoveWindowFromLayout(aura::Window* child) override;
91 void OnWindowRemovedFromLayout(aura::Window* child) override; 91 void OnWindowRemovedFromLayout(aura::Window* child) override;
92 void OnChildWindowVisibilityChanged(aura::Window* child, 92 void OnChildWindowVisibilityChanged(aura::Window* child,
93 bool visible) override; 93 bool visible) override;
94 void SetChildBounds(aura::Window* child, 94 void SetChildBounds(aura::Window* child,
95 const gfx::Rect& requested_bounds) override; 95 const gfx::Rect& requested_bounds) override;
96 96
97 // ShellObserver: 97 // ShellObserver:
98 void OnOverviewModeEnded() override; 98 void OnOverviewModeEnded() override;
99 void OnShelfAlignmentChanged(WmWindow* root_window) override; 99 void OnShelfAlignmentChanged(aura::Window* root_window) override;
100 void OnVirtualKeyboardStateChanged(bool activated, 100 void OnVirtualKeyboardStateChanged(bool activated,
101 aura::Window* root_window) override; 101 aura::Window* root_window) override;
102 102
103 // aura::WindowObserver 103 // aura::WindowObserver
104 void OnWindowPropertyChanged(aura::Window* window, 104 void OnWindowPropertyChanged(aura::Window* window,
105 const void* key, 105 const void* key,
106 intptr_t old) override; 106 intptr_t old) override;
107 107
108 // wm::WindowStateObserver: 108 // wm::WindowStateObserver:
109 void OnPostWindowStateTypeChange(wm::WindowState* window_state, 109 void OnPostWindowStateTypeChange(wm::WindowState* window_state,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 keyboard_observer_; 204 keyboard_observer_;
205 205
206 base::WeakPtrFactory<PanelLayoutManager> weak_factory_; 206 base::WeakPtrFactory<PanelLayoutManager> weak_factory_;
207 207
208 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager); 208 DISALLOW_COPY_AND_ASSIGN(PanelLayoutManager);
209 }; 209 };
210 210
211 } // namespace ash 211 } // namespace ash
212 212
213 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_ 213 #endif // ASH_WM_PANELS_PANEL_LAYOUT_MANAGER_H_
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_frame_view.cc ('k') | ash/wm/panels/panel_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698