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

Side by Side Diff: ash/wm/workspace/workspace_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/wm_snap_to_pixel_layout_manager.cc ('k') | cc/trees/property_tree_builder.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_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 5 #ifndef ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
6 #define ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 6 #define ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // the WorkspaceLayoutManager. 53 // the WorkspaceLayoutManager.
54 void SetMaximizeBackdropDelegate( 54 void SetMaximizeBackdropDelegate(
55 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate); 55 std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate);
56 56
57 // Overridden from aura::LayoutManager: 57 // Overridden from aura::LayoutManager:
58 void OnWindowResized() override; 58 void OnWindowResized() override;
59 void OnWindowAddedToLayout(aura::Window* child) override; 59 void OnWindowAddedToLayout(aura::Window* child) override;
60 void OnWillRemoveWindowFromLayout(aura::Window* child) override; 60 void OnWillRemoveWindowFromLayout(aura::Window* child) override;
61 void OnWindowRemovedFromLayout(aura::Window* child) override; 61 void OnWindowRemovedFromLayout(aura::Window* child) override;
62 void OnChildWindowVisibilityChanged(aura::Window* child, 62 void OnChildWindowVisibilityChanged(aura::Window* child,
63 bool visibile) override; 63 bool visible) override;
64 void SetChildBounds(aura::Window* child, 64 void SetChildBounds(aura::Window* child,
65 const gfx::Rect& requested_bounds) override; 65 const gfx::Rect& requested_bounds) override;
66 66
67 // Overriden from aura::WindowObserver: 67 // Overriden from aura::WindowObserver:
68 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override; 68 void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override;
69 void OnWindowPropertyChanged(aura::Window* window, 69 void OnWindowPropertyChanged(aura::Window* window,
70 const void* key, 70 const void* key,
71 intptr_t old) override; 71 intptr_t old) override;
72 void OnWindowStackingChanged(aura::Window* window) override; 72 void OnWindowStackingChanged(aura::Window* window) override;
73 void OnWindowDestroying(aura::Window* window) override; 73 void OnWindowDestroying(aura::Window* window) override;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 ScopedObserver<keyboard::KeyboardController, 142 ScopedObserver<keyboard::KeyboardController,
143 keyboard::KeyboardControllerObserver> 143 keyboard::KeyboardControllerObserver>
144 keyboard_observer_; 144 keyboard_observer_;
145 145
146 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager); 146 DISALLOW_COPY_AND_ASSIGN(WorkspaceLayoutManager);
147 }; 147 };
148 148
149 } // namespace ash 149 } // namespace ash
150 150
151 #endif // ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_ 151 #endif // ASH_WM_WORKSPACE_WORKSPACE_LAYOUT_MANAGER_H_
OLDNEW
« no previous file with comments | « ash/wm/wm_snap_to_pixel_layout_manager.cc ('k') | cc/trees/property_tree_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698