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

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

Issue 2877233002: Remove the i from visib[i]le. (Closed)
Patch Set: merge with tot 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/lock_layout_manager.h ('k') | ash/wm/wm_snap_to_pixel_layout_manager.h » ('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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 WmShelf* shelf() { return shelf_; } 84 WmShelf* shelf() { return shelf_; }
85 void SetShelf(WmShelf* shelf); 85 void SetShelf(WmShelf* shelf);
86 86
87 // aura::LayoutManager: 87 // aura::LayoutManager:
88 void OnWindowResized() override; 88 void OnWindowResized() override;
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 visibile) 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(WmWindow* 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
(...skipping 100 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/lock_layout_manager.h ('k') | ash/wm/wm_snap_to_pixel_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698